summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <webknjaz@redhat.com>2023-10-02 22:45:57 +0200
committerGitHub <noreply@github.com>2023-10-02 22:45:57 +0200
commitec265ec08a0e79443445291e22f6a3e23520a55b (patch)
treea89eb1cb9244bf359e668c8695c9b42aec7f30f6 /test
parentansible-test - Improve compatibility with pylint 3 (#81841) (diff)
downloadansible-ec265ec08a0e79443445291e22f6a3e23520a55b.tar.xz
ansible-ec265ec08a0e79443445291e22f6a3e23520a55b.zip
Bump `coverage.py` to v7.3.2 in `ansible-test` (#81844)
Diffstat (limited to 'test')
-rw-r--r--test/lib/ansible_test/_data/requirements/ansible-test.txt2
-rw-r--r--test/lib/ansible_test/_internal/coverage_util.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/lib/ansible_test/_data/requirements/ansible-test.txt b/test/lib/ansible_test/_data/requirements/ansible-test.txt
index dc08d3d6c7..17662f07a2 100644
--- a/test/lib/ansible_test/_data/requirements/ansible-test.txt
+++ b/test/lib/ansible_test/_data/requirements/ansible-test.txt
@@ -1,5 +1,5 @@
# The test-constraints sanity test verifies this file, but changes must be made manually to keep it in up-to-date.
virtualenv == 16.7.12 ; python_version < '3'
-coverage == 7.3.0 ; python_version >= '3.8' and python_version <= '3.12'
+coverage == 7.3.2 ; python_version >= '3.8' and python_version <= '3.12'
coverage == 6.5.0 ; python_version >= '3.7' and python_version <= '3.7'
coverage == 4.5.4 ; python_version >= '2.6' and python_version <= '3.6'
diff --git a/test/lib/ansible_test/_internal/coverage_util.py b/test/lib/ansible_test/_internal/coverage_util.py
index 1002ed04da..30176236c7 100644
--- a/test/lib/ansible_test/_internal/coverage_util.py
+++ b/test/lib/ansible_test/_internal/coverage_util.py
@@ -69,7 +69,7 @@ class CoverageVersion:
COVERAGE_VERSIONS = (
# IMPORTANT: Keep this in sync with the ansible-test.txt requirements file.
- CoverageVersion('7.3.0', 7, (3, 8), (3, 12)),
+ CoverageVersion('7.3.2', 7, (3, 8), (3, 12)),
CoverageVersion('6.5.0', 7, (3, 7), (3, 7)),
CoverageVersion('4.5.4', 0, (2, 6), (3, 6)),
)