Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ jobs:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9']
extra: ['', '-smtp']
# The forced pytest versions correspond with the lower bounds in tox.ini
pytest-version: ['', '--force-dep pytest==4', '--force-dep pytest==6.2.4']
pytest-version: ['', '--force-dep pytest==4.6', '--force-dep pytest==6.2.4']
include:
- os: 'ubuntu-20.04'
python-version: '3.6'
exclude:
- python-version: '3.10'
pytest-version: '--force-dep pytest==4'
pytest-version: '--force-dep pytest==4.6'
- python-version: '3.11'
pytest-version: '--force-dep pytest==4'
pytest-version: '--force-dep pytest==4.6'
- python-version: '3.12'
pytest-version: '--force-dep pytest==4'
pytest-version: '--force-dep pytest==4.6'
- python-version: '3.13'
pytest-version: '--force-dep pytest==4'
pytest-version: '--force-dep pytest==4.6'
fail-fast: false

steps:
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ deps =
# works with your code. Don't forget to modify the corresponding entries in
# the Github workflows configuration file if you do change these lower
# bounds.
pytest >=4, <8; python_version<'3.10'
pytest >=4.6, <8; python_version<'3.10'
pytest >=6.2.4, <8; python_version>='3.10'
pytest-cov
requests
Expand Down