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