Skip to content

Commit

Permalink
fail fast
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Dec 17, 2023
1 parent 7070b28 commit 826104a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ jobs:
- name: Run the tests
if: ${{ !startsWith(matrix.python-version, 'pypy') && !startsWith(matrix.os, 'windows') }}
run: |
hatch run cov:test --cov-fail-under 75 || hatch run test:test --lf
hatch run cov:test --cov-fail-under 75 -x
- name: Run the tests on pypy
if: ${{ startsWith(matrix.python-version, 'pypy') }}
run: |
hatch run test:nowarn || hatch run test:nowarn --lf
hatch run test:nowarn -x
- name: Run the tests on windows
if: ${{ startsWith(matrix.os, 'windows') }}
run: |
hatch run cov:nowarn || hatch run test:nowarn --lf
hatch run cov:nowarn -x
- uses: jupyterlab/maintainer-tools/.github/actions/upload-coverage@v1

coverage:
Expand Down

0 comments on commit 826104a

Please sign in to comment.