Skip to content
Merged
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 maint/scripts/run_local_ci_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ export PYTHONPATH=$ROOT_DIR:$PYTHONPATH

# Run pytest in parallel (4 workers) for all tests in the examples directory
cd examples
python -m pytest -n 4 .
python -m pytest -n 4 . --verbose --color=yes --durations=0 --showlocals --cache-clear
cd ..

# Run pytest in parallel (4 workers) for all tests in the testing/python directory
cd testing/python
python -m pytest -n 4 .
python -m pytest -n 4 . --verbose --color=yes --durations=0 --showlocals --cache-clear
cd ..
Loading