diff options
Diffstat (limited to 'xtesting')
-rw-r--r-- | xtesting/ci/tier_handler.py | 2 | ||||
-rw-r--r-- | xtesting/core/testcase.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/xtesting/ci/tier_handler.py b/xtesting/ci/tier_handler.py index 86f1374f..b5b677f2 100644 --- a/xtesting/ci/tier_handler.py +++ b/xtesting/ci/tier_handler.py @@ -77,7 +77,7 @@ class TestCase(): def __init__(self, name, enabled, skipped, criteria, blocking, description="", project=""): - # pylint: disable=too-many-arguments + # pylint: disable=too-many-arguments,too-many-positional-arguments self.name = name self.enabled = enabled self.skipped = skipped diff --git a/xtesting/core/testcase.py b/xtesting/core/testcase.py index 4c02e1ca..559f35a6 100644 --- a/xtesting/core/testcase.py +++ b/xtesting/core/testcase.py @@ -57,6 +57,7 @@ class TestCase(metaclass=abc.ABCMeta): _job_name_rule = "(dai|week)ly-(.+?)-[0-9]*" headers = {'Content-Type': 'application/json'} __logger = logging.getLogger(__name__) + __test__ = False def __init__(self, **kwargs): self.details = {} |