Skip to content

Commit

Permalink
tox.ini: exclude pytest !=8.0.1,!=8.0.2
Browse files Browse the repository at this point in the history
Fixes #3458 (or rather works around it)
  • Loading branch information
anthrotype committed Mar 4, 2024
1 parent 927ea07 commit 963aeec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ download = true
# building lxml from source takes too long on CI, force it to download pre-compiled
# wheel or fail if none is found with --only-binary=lxml
install_command = python -m pip install --only-binary=lxml {opts} {packages}
# exclude pytest 8.0.{1,2} because our tests mysteriously fail with those
# https://github.com/fonttools/fonttools/issues/3458
deps =
cov: coverage>=4.3
pytest>=7.0.0
pytest>=7.0.0,!=8.0.1,!=8.0.2
pytest-randomly
# add -noextra to tox -e to skip installing extras and only test the core fonttools
!noextra: -rrequirements.txt
Expand Down

0 comments on commit 963aeec

Please sign in to comment.