Skip to content

Commit

Permalink
[CI] Fix arg to check marks (#1064)
Browse files Browse the repository at this point in the history
We used `-k "not benchmark"` which would filter out ANY test that
contained the word 'benchmark'.

This change fixes that by using the `-m` argument to only filter on
marks.
  • Loading branch information
Grazfather committed Jan 30, 2024
1 parent ece5728 commit e123b87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ jobs:
- name: Run Tests
run: |
make -C tests/binaries -j ${{ env.GEF_CI_NB_CPU }}
python${{ env.PY_VER }} -m pytest --forked -n ${{ env.GEF_CI_NB_CPU }} -v -k "not benchmark" tests/
python${{ env.PY_VER }} -m pytest --forked -n ${{ env.GEF_CI_NB_CPU }} -v -m "not benchmark" tests/

0 comments on commit e123b87

Please sign in to comment.