We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55e9abe commit 175c3abCopy full SHA for 175c3ab
niworkflows/interfaces/tests/test_plotting.py
@@ -28,9 +28,14 @@
28
29
from niworkflows import viz
30
from niworkflows.interfaces.plotting import _get_tr
31
-from niworkflows.tests.data import load_test_data
32
from niworkflows.utils.timeseries import _cifti_timeseries, _nifti_timeseries
33
+try:
34
+ from niworkflows.tests.data import load_test_data
35
+except ImportError:
36
+ import pytest
37
+ pytest.skip('niworkflows installed as wheel, data excluded')
38
+
39
40
def test_cifti_carpetplot():
41
"""Exercise extraction of timeseries from CIFTI2."""
0 commit comments