aboutsummaryrefslogtreecommitdiffstats
path: root/xtesting/ci/tier_handler.py
diff options
context:
space:
mode:
Diffstat (limited to 'xtesting/ci/tier_handler.py')
-rw-r--r--xtesting/ci/tier_handler.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/xtesting/ci/tier_handler.py b/xtesting/ci/tier_handler.py
index 51f031c0..4e413f51 100644
--- a/xtesting/ci/tier_handler.py
+++ b/xtesting/ci/tier_handler.py
@@ -100,14 +100,15 @@ class Tier(object):
return msg.get_string()
-class TestCase(object):
+class TestCase(object): # pylint: disable=too-many-instance-attributes
- def __init__(self, name, enabled, dependency, criteria, blocking,
+ def __init__(self, name, enabled, skipped, dependency, criteria, blocking,
description="", project=""):
# pylint: disable=too-many-arguments
self.name = name
self.enabled = enabled
self.dependency = dependency
+ self.skipped = skipped
self.criteria = criteria
self.blocking = blocking
self.description = description
@@ -129,6 +130,9 @@ class TestCase(object):
def is_enabled(self):
return self.enabled
+ def is_skipped(self):
+ return self.skipped
+
def get_criteria(self):
return self.criteria