Skip to content

Commit 545be1a

Browse files
committed
Exclude version check from coverage.
1 parent 423b44d commit 545be1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/backends/zarr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def open_group(cls, store, mode='r', synchronizer=None, group=None,
274274
import zarr
275275
min_zarr = '2.2'
276276

277-
if LooseVersion(zarr.__version__) < min_zarr:
277+
if LooseVersion(zarr.__version__) < min_zarr: # pragma: no cover
278278
raise NotImplementedError("Zarr version %s or greater is "
279279
"required by xarray. See zarr "
280280
"installation "

0 commit comments

Comments
 (0)