Skip to content

Commit 2e4eba4

Browse files
committed
dont run failing tests twice
1 parent 96f6def commit 2e4eba4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
- name: Run the tests on pypy
3232
if: ${{ startsWith(matrix.python-version, 'pypy') }}
3333
run: |
34-
hatch run test:nowarn || hatch run test:nowarn --lf
34+
hatch run test:nowarn
3535
- name: Run the tests
3636
if: ${{ !startsWith(matrix.python-version, 'pypy') }}
37-
run: hatch run cov:test || hatch run test:test --lf
37+
run: hatch run cov:test
3838
- uses: jupyterlab/maintainer-tools/.github/actions/upload-coverage@v1
3939

4040
coverage:
@@ -80,7 +80,7 @@ jobs:
8080
dependency_type: minimum
8181
- name: Run the unit tests
8282
run: |
83-
hatch -v run test:nowarn || hatch run test:nowarn --lf
83+
hatch -v run test:nowarn
8484
8585
test_prereleases:
8686
name: Test Prereleases
@@ -93,7 +93,7 @@ jobs:
9393
dependency_type: pre
9494
- name: Run the tests
9595
run: |
96-
hatch run test:nowarn || hatch run test:nowarn --lf
96+
hatch run test:nowarn
9797
9898
make_sdist:
9999
name: Make SDist

0 commit comments

Comments
 (0)