Skip to content
Open
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,4 +1,4 @@
pytest>=6.0.0
pytest>=9.1.1

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 conflicts tox

High Severity

Raising the pin in requirements-testing.txt to pytest>=9.1.1 conflicts with tox.ini, which still installs that file for every testenv and adds pytest<7.0.0 on Python 3.6 and 3.7. Those constraints cannot be satisfied together, so dependency resolution for those environments fails. Pytest 9.x also requires Python 3.10+, while tox still runs 3.8 and 3.9 with the same requirements file, so installs fail there as well.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 9092f3f. Configure here.

pytest-cov
dataclasses; python_version < "3.7"
pytest-forked
Expand Down
Loading