Skip to content
Open
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
2 changes: 1 addition & 1 deletion requirements-devenv.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-r requirements-linting.txt
-r requirements-testing.txt
mockupdb # required by `pymongo` tests that are enabled by `pymongo` from linter requirements
pytest>=6.0.0
pytest>=8.4.2
tomli;python_version<"3.11" # Only needed for pytest on Python < 3.11
pytest-asyncio
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>=8.4.2
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Unsatisfiable pytest constraints in multiple tox environments

High Severity

The pytest>=8.4.2 minimum in requirements-testing.txt conflicts with existing pytest upper bounds in tox.ini. This creates unsatisfiable dependency constraints for environments like {py3.6,py3.7}-common/{py3.6,py3.7}-gevent (pytest<7.0.0), redis (pytest<8.0.0), and tornado-v6.0.4 (pytest<8.2), leading to pip resolution failures and broken CI.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 295a8b9. Configure here.

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