diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2024-12-19 16:37:05 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2024-12-19 17:41:19 +0100 |
commit | 53fb21693df0d3ed1f9dd24b09708ffb14b9f1d0 (patch) | |
tree | fc41dcae283d043923d0165223a904ec84b51aba /xtesting | |
parent | 7609b488292d66bfc54cd3d72a7af6045a54113f (diff) |
Change-Id: I1fb6cfa577495e19ea6a0f61025ee09d8d966081
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
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 = {} |