From a3aa67bcfd50066689fba388d2cbf534487356cd Mon Sep 17 00:00:00 2001 From: Moritz Makowski Date: Thu, 29 Aug 2024 17:27:25 +0000 Subject: [PATCH] Debug CI only run long tests using Python3.10 --- .github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 64ea892b..7abd68d9 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -40,12 +40,12 @@ jobs: # Run quick tests for all python versions except 3.10 - name: Run quick tests - if: ${{ matrix.python_version }} != "3.10" + if: matrix.python_version != "3.10" run: | pytest -m "quick" --capture=no --verbose --exitfirst --cov=src tests/ # Run all tests for python 3.10 - name: Run quick and ci tests - if: ${{ matrix.python_version }} == "3.10" + if: matrix.python_version == "3.10" run: | pytest -m "quick or ci" --capture=no --verbose --exitfirst --cov=src tests/ \ No newline at end of file