Skip to content

Commit

Permalink
debug pytest: add -x flag
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmgray committed Sep 7, 2023
1 parent 307fed1 commit e9fa681
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
set -e
pip install cotengrust --find-links dist --force-reinstall
pip install -r requirements-tests.txt
pytest --verbose
pytest --verbose -x
- name: pytest
if: ${{ !startsWith(matrix.target, 'x86') && matrix.target != 'ppc64' }}
uses: uraimo/[email protected]
Expand All @@ -64,7 +64,7 @@ jobs:
run: |
set -e
pip3 install cotengrust --find-links dist --force-reinstall
pytest --verbose
pytest --verbose -x
windows:
runs-on: windows-latest
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
set -e
pip install cotengrust --find-links dist --force-reinstall
pip install -r requirements-tests.txt
pytest --verbose
pytest --verbose -x
macos:
runs-on: macos-latest
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
set -e
pip install cotengrust --find-links dist --force-reinstall
pip install -r requirements-tests.txt
pytest --verbose
pytest --verbose -x
sdist:
runs-on: ubuntu-latest
Expand Down

0 comments on commit e9fa681

Please sign in to comment.