From 53fb21693df0d3ed1f9dd24b09708ffb14b9f1d0 Mon Sep 17 00:00:00 2001
From: Cédric Ollivier <cedric.ollivier@orange.com>
Date: Thu, 19 Dec 2024 16:37:05 +0100
Subject: Update upper constraints to last versions
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Change-Id: I1fb6cfa577495e19ea6a0f61025ee09d8d966081
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
---
 upper-constraints.txt       | 12 ++++++------
 xtesting/ci/tier_handler.py |  2 +-
 xtesting/core/testcase.py   |  1 +
 3 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/upper-constraints.txt b/upper-constraints.txt
index 2cf21e5b..7e384687 100644
--- a/upper-constraints.txt
+++ b/upper-constraints.txt
@@ -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
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 = {}
-- 
cgit