From adb9a5c93fba3f6a7679c59893c74ad92bc9326f Mon Sep 17 00:00:00 2001 From: Moritz Makowski Date: Thu, 29 Aug 2024 16:32:25 +0000 Subject: [PATCH] Debug CI --- .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 92c56be3..96b5cfde 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