Skip to content

Commit d5ecd3d

Browse files
authored
Merge pull request #1219 from betatim/increase-maxfail
[MRG] Use same maxfail limit as JupyterHub
2 parents 02b779e + bf158d9 commit d5ecd3d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,16 +147,16 @@ jobs:
147147
- name: Run main tests
148148
if: matrix.test == 'main'
149149
# running the "main" tests means "all tests that aren't auth"
150-
run: pytest -m "not auth" -vx --cov binderhub --durations=10
150+
run: pytest -m "not auth" -v --maxfail=2 --cov binderhub --durations=10
151151
- name: Run auth tests
152152
if: matrix.test == 'auth'
153153
# running the "auth" tests means "all tests that are marked as auth"
154-
run: pytest -m "auth" -vx --cov binderhub --durations=10
154+
run: pytest -m "auth" -v --maxfail=2 --cov binderhub --durations=10
155155
- name: Run helm tests
156156
if: matrix.test == 'helm'
157157
run: |
158158
export BINDER_URL=http://localhost:30901
159-
pytest -m "remote" -vx --cov binderhub --durations=10
159+
pytest -m "remote" -v --maxfail=2 --cov binderhub --durations=10
160160
- name: Kubernetes namespace report
161161
if: ${{ always() }}
162162
run: |

0 commit comments

Comments
 (0)