Skip to content

Commit

Permalink
FIX: Try
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Feb 5, 2025
1 parent ef56fe4 commit 5e55967
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,7 @@ jobs:
# Python (if conda)
- name: Fixes for conda
run: |
# For some reason on Linux we get crashes
if [[ "$RUNNER_OS" == "Linux" ]]; then
sed -i "/numba/d" environment.yml
elif [[ "$RUNNER_OS" == "macOS" ]]; then
if [[ "$RUNNER_OS" == "macOS" ]]; then
sed -i "" "s/ - PySide6 .*/ - PySide6 <6.8/g" environment.yml
fi
if: matrix.kind == 'conda' || matrix.kind == 'mamba'
Expand Down
5 changes: 0 additions & 5 deletions mne/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -614,11 +614,6 @@ def renderer_pyvistaqt(request, options_3d, garbage_collect):
@pytest.fixture(params=[pytest.param("notebook", marks=pytest.mark.pvtest)])
def renderer_notebook(request, options_3d):
"""Yield the 3D notebook renderer."""
if (
os.getenv("MNE_CI_KIND", "") in ("conda", "mamba")
and platform.system() == "Linux"
):
pytest.skip("Skipping notebook tests on conda Linux CI")
with _use_backend(request.param, interactive=False) as renderer:
yield renderer

Expand Down

0 comments on commit 5e55967

Please sign in to comment.