Skip to content

Commit

Permalink
Merge pull request jupyterhub#1219 from betatim/increase-maxfail
Browse files Browse the repository at this point in the history
[MRG] Use same maxfail limit as JupyterHub
  • Loading branch information
consideRatio authored Dec 3, 2020
2 parents 02b779e + bf158d9 commit d5ecd3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,16 +147,16 @@ jobs:
- name: Run main tests
if: matrix.test == 'main'
# running the "main" tests means "all tests that aren't auth"
run: pytest -m "not auth" -vx --cov binderhub --durations=10
run: pytest -m "not auth" -v --maxfail=2 --cov binderhub --durations=10
- name: Run auth tests
if: matrix.test == 'auth'
# running the "auth" tests means "all tests that are marked as auth"
run: pytest -m "auth" -vx --cov binderhub --durations=10
run: pytest -m "auth" -v --maxfail=2 --cov binderhub --durations=10
- name: Run helm tests
if: matrix.test == 'helm'
run: |
export BINDER_URL=http://localhost:30901
pytest -m "remote" -vx --cov binderhub --durations=10
pytest -m "remote" -v --maxfail=2 --cov binderhub --durations=10
- name: Kubernetes namespace report
if: ${{ always() }}
run: |
Expand Down

0 comments on commit d5ecd3d

Please sign in to comment.