Skip to content

Commit

Permalink
MAINT: Dont use continue-on-error (#1015)
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner authored Oct 30, 2024
1 parent aaab023 commit 7be104e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ jobs:
caching:
name: 'Caching on ${{ matrix.os }}'
timeout-minutes: 30
continue-on-error: true
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -e {0}
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
Expand Down Expand Up @@ -76,4 +76,4 @@ jobs:
- run: pytest --cov-append -k ds003392 mne_bids_pipeline/ # uses "mtime" method
timeout-minutes: 1
- uses: codecov/codecov-action@v4
if: success()
if: success() || failure()

0 comments on commit 7be104e

Please sign in to comment.