Skip to content

Commit

Permalink
FIX: Gone
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Dec 19, 2024
1 parent 5d83915 commit dbf74c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 2 additions & 4 deletions mne/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -637,15 +637,13 @@ def _use_backend(backend_name, interactive):

def _check_skip_backend(name):
from mne.viz.backends._utils import _notebook_vtk_works
from mne.viz.backends.tests._utils import has_imageio_ffmpeg

pytest.importorskip("pyvista")
if not has_imageio_ffmpeg():
pytest.skip("Test skipped, requires imageio-ffmpeg")
pytest.importorskip("imageio_ffmpeg")
if name == "pyvistaqt":
pytest.importorskip("pyvistaqt")
if not _check_qt_version():
pytest.skip("Test skipped, requires Qt.")
pytest.importorskip("pyvistaqt")
else:
assert name == "notebook", name
if not _notebook_vtk_works():
Expand Down
1 change: 0 additions & 1 deletion tools/vulture_allowlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
captions_new
comments_new
items_new
has_imageio_ffmpeg
f4
set_channel_types_eyetrack
_use_test_3d_backend
Expand Down

0 comments on commit dbf74c1

Please sign in to comment.