From e123b87a4ef756ac57578cdbe5ba926d8487445e Mon Sep 17 00:00:00 2001 From: Grazfather Date: Mon, 29 Jan 2024 20:31:05 -0500 Subject: [PATCH] [CI] Fix arg to check marks (#1064) 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. --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index f6300b23b..25630363f 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -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/