From 826104a57d45be0cd3f489fcde90f10d624c56d3 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Sun, 17 Dec 2023 15:13:04 -0600 Subject: [PATCH] fail fast --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9fe57ae8..7516b87b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: