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 d1e4edf
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,10 @@ jobs:

# Run quick tests for all python versions except 3.10
- name: Run quick tests
if: ${{ matrix.python_version }} != "3.10"
run: |
pytest -m "quick" --capture=no --verbose --exitfirst --cov=src tests/
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"
run: |
pytest -m "quick or ci" --capture=no --verbose --exitfirst --cov=src tests/
if: ${{ matrix.python_version == '3.10' }}
run: pytest -m "quick or ci" --capture=no --verbose --exitfirst --cov=src tests/

0 comments on commit d1e4edf

Please sign in to comment.