From cb591804131aed503548a0155fd4175d712ed520 Mon Sep 17 00:00:00 2001 From: Rob Davis Date: Tue, 17 Sep 2024 23:43:13 +0100 Subject: [PATCH] temporarily suppress short tests --- .github/workflows/test_full.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test_full.yml b/.github/workflows/test_full.yml index 8b71081a..26571612 100644 --- a/.github/workflows/test_full.yml +++ b/.github/workflows/test_full.yml @@ -33,18 +33,15 @@ jobs: - name: Limit OpenMP threads run: | echo "OMP_NUM_THREADS=2" >> $GITHUB_ENV - - name: Test Core - slow - # timeout-minutes: 1000 + - name: Test Core - slow part one run: | pip install .[testing] - pytest -vvvs --durations=50 -m "slow" - # - name: Test Core - slow part two - # timeout-minutes: 1000 - # run: | - # pip install .[testing] - # pytest -vvvs --durations=50 -m "slow_2" + pytest -vvvs --durations=50 -m "slow_1" + - name: Test Core - slow part two + run: | + pip install .[testing] + pytest -vvvs --durations=50 -m "slow_2" - name: Test Core - fast - timeout-minutes: 1000 run: | pip install .[testing] pytest -vvvs --durations=50 -m "not slow"