Skip to content

Commit b5f354c

Browse files
build: restrict to pytest 9.0 due to breakage in custom pytest_configure (#4827)
1 parent f705197 commit b5f354c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ skip = ["*-manylinux_i686", "*-musllinux_*", "*-win32", "pp*"]
162162
# This is the bare minimum needed to run the test suite. Pulling in the full
163163
# test_requirements.txt would download a bunch of other packages not necessary
164164
# here and would slow down the testing step a fair bit.
165-
test-requires = ["pytest>=6.1.1"]
165+
test-requires = ["pytest>=6.1.1,<9.0"]
166166
test-command = 'pytest {project} -k "not incompatible_with_mypyc"'
167167
test-extras = ["d"," jupyter"]
168168
# Skip trying to test arm64 builds on Intel Macs. (so cross-compilation doesn't

test_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
coverage >= 5.3
22
pre-commit
3-
pytest >= 6.1.1
3+
pytest >= 6.1.1, <9.0
44
pytest-xdist >= 3.0.2
55
pytest-cov >= 4.1.0
66
tox

0 commit comments

Comments
 (0)