File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 7272
7373
7474 - name : Install zarr-python
75- if : matrix.python-version != '3.10'
7675 shell : " bash -l {0}"
7776 run : |
7877 conda activate env
Original file line number Diff line number Diff line change @@ -8,6 +8,6 @@ def test_zarr3_import():
88
99 try :
1010 import zarr # noqa: F401
11- except ImportError :
11+ except ImportError : # pragma: no cover
1212 with pytest .raises (ImportError , match = ERROR_MESSAGE_MATCH ):
1313 import numcodecs .zarr3 # noqa: F401
Original file line number Diff line number Diff line change 1616
1717 if zarr .__version__ < "3.0.0" : # pragma: no cover
1818 raise ImportError ("zarr 3.0.0 or later is required to use the numcodecs zarr integration." )
19- except ImportError :
19+ except ImportError : # pragma: no cover
2020 raise ImportError ("zarr 3.0.0 or later is required to use the numcodecs zarr integration." )
2121
2222from zarr .abc .codec import ArrayArrayCodec , ArrayBytesCodec , BytesBytesCodec
You can’t perform that action at this time.
0 commit comments