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
4 changes: 2 additions & 2 deletions api/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ NamedAtomicLock
dataclasses_json

# Test requirements
pytest<7.2.0 # https://github.com/pytest-dev/pytest/issues/10420 remove version limitation when fixed
pytest-parallel<7.2.0 # https://github.com/pytest-dev/pytest/issues/10420 remove version limitation when fixed
pytest # https://github.com/pytest-dev/pytest/issues/10420 remove version limitation when fixed
pytest-xdist # https://github.com/pytest-dev/pytest/issues/10420 remove version limitation when fixed
Comment on lines +28 to +29
Copy link
Member

Choose a reason for hiding this comment

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

Remove the comments, they are no longer up to date

selenium
faker
dataclasses_json
Expand Down
2 changes: 1 addition & 1 deletion api/test_run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ if [ -n "$WAIT_FOR_DEBUGGER" ]; then
wait_for_debugger_flags="-m debugpy --listen 0.0.0.0:5678 --wait-for-client"
fi

python3 $wait_for_debugger_flags -m pytest --color=yes . --workers ${TEST_PARALELLISM} -ra
python3 $wait_for_debugger_flags -m pytest --color=yes . -n ${TEST_PARALELLISM} -ra
Loading