Update upper constraints to last versions 69/74669/4
authorCédric Ollivier <cedric.ollivier@orange.com>
Thu, 19 Dec 2024 15:37:05 +0000 (16:37 +0100)
committerCédric Ollivier <cedric.ollivier@orange.com>
Thu, 19 Dec 2024 16:41:19 +0000 (17:41 +0100)
Change-Id: I1fb6cfa577495e19ea6a0f61025ee09d8d966081
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
upper-constraints.txt
xtesting/ci/tier_handler.py
xtesting/core/testcase.py

index 2cf21e5..7e38468 100644 (file)
@@ -1,10 +1,10 @@
 robotframework===6.1.1
-bandit===1.7.9
+bandit===1.8.0
 behave===1.2.6
 behave-html-formatter===0.9.10
-pylint===3.2.7
+pylint===3.3.2
 flake8===7.1.1
-ansible-lint===24.7.0
-pre-commit===3.8.0
-astroid===3.2.4
-sphinx-rtd-theme==3.0.0rc1
+ansible-lint===24.12.2
+pre-commit===4.0.1
+astroid===3.3.6
+sphinx-rtd-theme==3.0.2
index 86f1374..b5b677f 100644 (file)
@@ -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
index 4c02e1c..559f35a 100644 (file)
@@ -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 = {}