From aefd908398d535c7842d8b4fc2fb9cc4de639245 Mon Sep 17 00:00:00 2001 From: calum-chamberlain Date: Fri, 27 Oct 2023 21:08:49 +1300 Subject: [PATCH] Don't run slow tests twice --- .github/workflows/runtest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/runtest.yml b/.github/workflows/runtest.yml index 10e8351d9..f1adae587 100644 --- a/.github/workflows/runtest.yml +++ b/.github/workflows/runtest.yml @@ -56,7 +56,7 @@ jobs: - name: run main test suite shell: bash -l {0} run: | - py.test -n 2 -m "not serial and not network and not superslow" --cov-report=xml --dist loadscope + py.test -n 2 -m "not serial and not network and not superslow and not slow" --cov-report=xml --dist loadscope - name: run serial test if: always()