Skip to content

Commit

Permalink
Debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dostuffthatmatters committed Aug 29, 2024
1 parent e7c3df1 commit adb9a5c
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 adb9a5c

Please sign in to comment.