Skip to content

Commit

Permalink
Debug CI
Browse files Browse the repository at this point in the history
only run long tests using Python3.10
  • Loading branch information
dostuffthatmatters committed Aug 29, 2024
1 parent 70c7b38 commit a3aa67b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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/

0 comments on commit a3aa67b

Please sign in to comment.