diff --git a/.github/workflows/core-test.yml b/.github/workflows/core-test.yml index 1609b8619c..774af4cced 100644 --- a/.github/workflows/core-test.yml +++ b/.github/workflows/core-test.yml @@ -31,7 +31,7 @@ jobs: pip install -e .[test_core] - name: Test core with pytest run: | - pytest -vv -ra --durations=0 --durations-min=0.001 src/spikeinterface/core | tee report.txt; test ${PIPESTATUS[0]} -eq 0 || exit 1 + pytest -m "core" -vv -ra --durations=0 --durations-min=0.001 | tee report.txt; test ${PIPESTATUS[0]} -eq 0 || exit 1 shell: bash # Necessary for pipeline to work on windows - name: Build test summary run: |