Skip to content
Snippets Groups Projects
Commit e2083352 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

Disable freesurfer .annot test on current version of nibabel, because it is

broken.
parent de73eb91
No related branches found
No related tags found
No related merge requests found
...@@ -176,8 +176,12 @@ def test_loadVertexData_mgh(): ...@@ -176,8 +176,12 @@ def test_loadVertexData_mgh():
def test_loadVertexData_annot(): def test_loadVertexData_annot():
import nibabel.info as nibinfo
# assume nibabel 2.*
# nibabel 2.2.1 is broken w.r.t. .annot files. # nibabel 2.2.1 is broken w.r.t. .annot files.
# return if nibinfo._version_minor == 2 and nibinfo._version_micro <= 1:
return
verts = np.array(CUBE_VERTICES) verts = np.array(CUBE_VERTICES)
tris = np.array(CUBE_TRIANGLES_CCW) tris = np.array(CUBE_TRIANGLES_CCW)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment