ansible-test - Upgrade coverage to 7.9.1 (#85411)

This commit is contained in:
Matt Clay 2025-06-30 17:41:10 -07:00 committed by GitHub
parent 6ff6339191
commit a1d25cca00
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 2 deletions

View File

@ -0,0 +1,2 @@
minor_changes:
- ansible-test - Upgrade to ``coverage`` version 7.9.1 for Python 3.9 and later.

View File

@ -1,2 +1,3 @@
# The test-constraints sanity test verifies this file, but changes must be made manually to keep it in up-to-date.
coverage == 7.6.1 ; python_version >= '3.8' and python_version <= '3.13'
coverage == 7.9.1 ; python_version >= '3.9' and python_version <= '3.14'
coverage == 7.6.1 ; python_version >= '3.8' and python_version <= '3.8'

View File

@ -70,7 +70,8 @@ class CoverageVersion:
COVERAGE_VERSIONS = (
# IMPORTANT: Keep this in sync with the ansible-test.txt requirements file.
CoverageVersion('7.6.1', 7, (3, 8), (3, 13)),
CoverageVersion('7.9.1', 7, (3, 9), (3, 14)),
CoverageVersion('7.6.1', 7, (3, 8), (3, 8)),
)
"""
This tuple specifies the coverage version to use for Python version ranges.