diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 31e394122e1..126ec9a8e90 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,7 +41,6 @@ jobs: name: '${{ matrix.os }} / ${{ matrix.kind }} / ${{ matrix.python }}' needs: style timeout-minutes: 70 - continue-on-error: true runs-on: ${{ matrix.os }} defaults: run: @@ -54,6 +53,7 @@ jobs: MNE_CI_KIND: '${{ matrix.kind }}' CI_OS_NAME: '${{ matrix.os }}' strategy: + fail-fast: false matrix: include: - os: ubuntu-latest @@ -132,4 +132,4 @@ jobs: - uses: codecov/codecov-action@v4 with: token: ${{ secrets.CODECOV_TOKEN }} - if: always() + if: success() || failure() diff --git a/doc/sphinxext/mne_doc_utils.py b/doc/sphinxext/mne_doc_utils.py index 4811cde5f44..7717c203d28 100644 --- a/doc/sphinxext/mne_doc_utils.py +++ b/doc/sphinxext/mne_doc_utils.py @@ -95,6 +95,8 @@ def reset_warnings(gallery_conf, fname): r"numpy\.core is deprecated and has been renamed to numpy\._core", # matplotlib "__array_wrap__ must accept context and return_scalar.*", + # selenium + "setting remote_server_addr", ): warnings.filterwarnings( # deal with other modules having bad imports "ignore", message=f".*{key}.*", category=DeprecationWarning