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 pipeline/backend/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ tenacity==8.2.3
anyio==4.1.0

# Test dependencies
pytest==8.3.3
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 9.0.3 is incompatible with pytest-asyncio 0.24.0

Bumping pytest to 9.0.3 creates an unresolvable dependency conflict with pytest-asyncio==0.24.0 (line 36), which requires pytest>=8.2,<9. Pip will refuse to install these two packages together, meaning the test environment cannot be created and the entire test suite (including async tests using @pytest.mark.asyncio in pipeline/backend/tests/test_core.py) will fail to run.

pip error output confirming the conflict
ERROR: Cannot install pytest-asyncio==0.24.0 and pytest==9.0.3 because these package versions have conflicting dependencies.

The conflict is caused by:
    The user requested pytest==9.0.3
    pytest-asyncio 0.24.0 depends on pytest<9 and >=8.2
Suggested change
pytest==9.0.3
pytest==9.0.3
pytest-asyncio==0.25.0
Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

pytest-asyncio==0.24.0