Skip to content

Commit

Permalink
[CI] Fix CIs (mne-tools#164)
Browse files Browse the repository at this point in the history
* Fix CIs for circleCI dipy and mnę-main

---------

Signed-off-by: Adam Li <[email protected]>
  • Loading branch information
adam2392 authored Dec 15, 2023
1 parent 6fb08c7 commit 32b10ea
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 11 deletions.
5 changes: 1 addition & 4 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,10 +289,7 @@
"joblib": ("https://joblib.readthedocs.io/en/latest", None),
"nibabel": ("https://nipy.org/nibabel", None),
"nilearn": ("http://nilearn.github.io/stable", None),
"dipy": (
"https://dipy.org/documentation/1.4.0./",
"https://dipy.org/documentation/1.4.0./objects.inv/",
),
"dipy": ("https://docs.dipy.org/1.8.0/", None),
}
intersphinx_timeout = 5

Expand Down
38 changes: 32 additions & 6 deletions mne_connectivity/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,38 @@
from mne.utils import _check_qt_version


def has_pyvista():
"""Check that PyVista is installed."""
try:
with warnings.catch_warnings():
warnings.filterwarnings("ignore", category=DeprecationWarning)
import pyvista # noqa: F401
return True
except ImportError:
return False


def has_pyvistaqt():
"""Check that PyVistaQt is installed."""
try:
with warnings.catch_warnings():
warnings.filterwarnings("ignore", category=DeprecationWarning)
import pyvistaqt # noqa: F401
return True
except ImportError:
return False


def has_imageio_ffmpeg():
"""Check if imageio-ffmpeg is installed."""
try:
import imageio_ffmpeg # noqa: F401

return True
except ImportError:
return False


def pytest_configure(config):
"""Configure pytest options."""
# Fixtures
Expand Down Expand Up @@ -153,12 +185,6 @@ def _use_backend(backend_name, interactive):


def _check_skip_backend(name):
from mne.viz.backends.tests._utils import (
has_imageio_ffmpeg,
has_pyvista,
has_pyvistaqt,
)

if name in ("pyvistaqt", "notebook"):
if not has_pyvista():
pytest.skip("Test skipped, requires pyvista.")
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ style = [
'yamllint',
]
test = [
"pytest-timeout",
'joblib',
'mne-bids',
'mne-connectivity[gui]',
Expand All @@ -112,7 +113,6 @@ test = [
'pytest',
'pytest-cov',
'statsmodels',
"pytest-timeout",
]

[project.urls]
Expand Down

0 comments on commit 32b10ea

Please sign in to comment.