diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index a47b301..d65fbee 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -99,7 +99,7 @@ jobs: shell: bash command: | . ~/.profile - xvfb-run --auto-servernum pytest spyder-notebook/spyder_notebook -vv + xvfb-run --auto-servernum pytest --exitfirst spyder-notebook/spyder_notebook -vv - name: Run tests (MacOS) if: matrix.OS == 'macos' uses: nick-fields/retry@v3 @@ -109,11 +109,11 @@ jobs: shell: bash command: | . ~/.profile - pytest spyder-notebook/spyder_notebook -vv + pytest --exitfirst spyder-notebook/spyder_notebook -vv - name: Run tests (Windows) if: matrix.OS == 'windows' uses: nick-fields/retry@v3 with: timeout_minutes: 10 max_attempts: 3 - command: pytest spyder-notebook/spyder_notebook -vv + command: pytest --exitfirst spyder-notebook/spyder_notebook -vv