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

Merge branch 'mnt/verbump' into 'master'

TEST: Some pytest configurations complain about pytest.raises arguments not

See merge request fsl/fslpy!61
parents 948d0dbb 0646068e
No related branches found
No related tags found
No related merge requests found
...@@ -39,8 +39,12 @@ except ImportError: ...@@ -39,8 +39,12 @@ except ImportError:
try: try:
import indexed_gzip as igzip import indexed_gzip as igzip
except ImportError: except ImportError:
class MockError(Exception):
pass
igzip = mock.MagicMock() igzip = mock.MagicMock()
igzip.ZranError = mock.MagicMock() igzip.ZranError = MockError
def make_image(filename=None, def make_image(filename=None,
......
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