Skip to content
Closed
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
2 changes: 1 addition & 1 deletion requirements-testing.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pip
pytest>=6.0.0
pytest>=9.0.3

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pytest floor breaks old Python

High Severity

Raising the floor to pytest>=9.0.3 in requirements-testing.txt conflicts with how tests are run: every tox testenv installs that file, pytest 9 only supports Python 3.10+, and the matrix still includes 3.6–3.9 (with pytest<7.0.0 on 3.6/3.7). Dependency resolution or installation fails for most of those environments.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 21e2bae. Configure here.

tomli;python_version<"3.11" # Only needed for pytest on Python < 3.11
pytest-cov
pytest-forked
Expand Down
Loading