diff options
author | Sloane Hertel <19572925+s-hertel@users.noreply.github.com> | 2023-06-26 19:38:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-26 19:38:22 +0200 |
commit | ed8a404f4a736bba2dc6b32f0c79f8b7e5dabf61 (patch) | |
tree | 7148798e6276a9c44bc7101da5eae0baaca40b7e /test | |
parent | ansible-galaxy - add config option for the default ansible-galaxy timeout (#8... (diff) | |
download | ansible-ed8a404f4a736bba2dc6b32f0c79f8b7e5dabf61.tar.xz ansible-ed8a404f4a736bba2dc6b32f0c79f8b7e5dabf61.zip |
add coverage for Python 3.12 (#81125)
Diffstat (limited to 'test')
-rw-r--r-- | test/lib/ansible_test/_data/requirements/ansible-test.txt | 2 | ||||
-rw-r--r-- | test/lib/ansible_test/_internal/coverage_util.py | 2 |
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 f7cb9c2778..8b1772fb91 100644 --- a/test/lib/ansible_test/_data/requirements/ansible-test.txt +++ b/test/lib/ansible_test/_data/requirements/ansible-test.txt @@ -1,4 +1,4 @@ # 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 == 6.5.0 ; python_version >= '3.7' and python_version <= '3.11' +coverage == 6.5.0 ; python_version >= '3.7' and python_version <= '3.12' 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 ae64024939..f2c35e3947 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('6.5.0', 7, (3, 7), (3, 11)), + CoverageVersion('6.5.0', 7, (3, 7), (3, 12)), CoverageVersion('4.5.4', 0, (2, 6), (3, 6)), ) """ |