Skip to content

Commit

Permalink
Allow pytest 8.0 for non-windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Jan 30, 2024
1 parent dc779df commit 16c128f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions requirements/tests.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@
# pytest (that are also compatible with xdoctest) are for each legacy python
# major.minor version.
# See ~/local/tools/supported_python_versions_pip.py for helper script
pytest >= 6.2.5, <8.0.0 ; python_version >= '3.10.0' # Python 3.10+
pytest >= 4.6.0, <8.0.0 ; python_version < '3.10.0' and python_version >= '3.7.0' # Python 3.7-3.9
pytest >= 4.6.0, <8.0.0 ; python_version < '3.7.0' and python_version >= '3.6.0' # Python 3.6
pytest >= 6.2.5, <8.0.0 ; python_version >= '3.10.0' and platform_system=="Windows" # Python 3.10+
pytest >= 4.6.0, <8.0.0 ; python_version < '3.10.0' and python_version >= '3.7.0' and platform_system=="Windows" # Python 3.7-3.9
pytest >= 4.6.0, <8.0.0 ; python_version < '3.7.0' and python_version >= '3.6.0' and platform_system=="Windows" # Python 3.6

pytest >= 6.2.5, ; python_version >= '3.10.0' and platform_system!="Windows" # Python 3.10+
pytest >= 4.6.0, ; python_version < '3.10.0' and python_version >= '3.7.0' and platform_system!="Windows" # Python 3.7-3.9
pytest >= 4.6.0, ; python_version < '3.7.0' and python_version >= '3.6.0' and platform_system!="Windows" # Python 3.6

pytest-cov >= 3.0.0 ; python_version >= '3.6.0' # Python 3.6+

Expand Down

0 comments on commit 16c128f

Please sign in to comment.