@@ -46,19 +46,19 @@ jobs:
4646 timeout-minutes : 15
4747 if : ${{ !startsWith( matrix.python-version, 'pypy' ) && !startsWith(matrix.os, 'windows') }}
4848 run : |
49- hatch run cov:test --cov-fail-under 50 || hatch run test:test --lf
49+ hatch run cov:test --cov-fail-under 50
5050
5151 - name : Run the tests on pypy
5252 timeout-minutes : 15
5353 if : ${{ startsWith( matrix.python-version, 'pypy' ) }}
5454 run : |
55- hatch run test:nowarn || hatch run test:nowarn --lf
55+ hatch run test:nowarn
5656
5757 - name : Run the tests on Windows
5858 timeout-minutes : 15
5959 if : ${{ !startsWith( matrix.python-version, 'pypy' ) && startsWith(matrix.os, 'windows') }}
6060 run : |
61- hatch run cov:nowarn || hatch run test:nowarn --lf
61+ hatch run cov:nowarn
6262
6363 - name : Check Launcher
6464 run : |
@@ -141,7 +141,7 @@ jobs:
141141
142142 - name : Run the tests
143143 timeout-minutes : 15
144- run : pytest -W default -vv || pytest --vv -W default --lf
144+ run : pytest -W default -vv
145145
146146 test_miniumum_versions :
147147 name : Test Minimum Versions
@@ -161,7 +161,7 @@ jobs:
161161
162162 - name : Run the unit tests
163163 run : |
164- hatch -v run test:nowarn || hatch run test:nowarn --lf
164+ hatch -v run test:nowarn
165165
166166 test_prereleases :
167167 name : Test Prereleases
@@ -176,7 +176,7 @@ jobs:
176176 dependency_type : pre
177177 - name : Run the tests
178178 run : |
179- hatch run test:nowarn || hatch run test:nowarn --lf
179+ hatch run test:nowarn
180180
181181 make_sdist :
182182 name : Make SDist
0 commit comments