Skip to content

Commit b2f088f

Browse files
authored
Fix coverage (#1264)
1 parent 090de2c commit b2f088f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

docs/release.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ Maintenance
3232
* Simplify if/else statement.
3333
By :user:`Dimitri Papadopoulos Orfanos <DimitriPapadopoulos>` :issue:`1227`.
3434

35+
* Get coverage up to 100%.
36+
By :user:`John Kirkham <jakirkham>` :issue:`1264`.
37+
3538
* Migrate coverage to ``pyproject.toml``.
3639
By :user:`John Kirkham <jakirkham>` :issue:`1250`.
3740

zarr/hierarchy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1430,7 +1430,7 @@ def open_group(store=None, mode='a', cache_attrs=True, synchronizer=None, path=N
14301430
mode=mode,
14311431
zarr_version=zarr_version)
14321432
if getattr(chunk_store, '_store_version', DEFAULT_ZARR_VERSION) != zarr_version:
1433-
raise ValueError(
1433+
raise ValueError( # pragma: no cover
14341434
"zarr_version of store and chunk_store must match"
14351435
)
14361436

0 commit comments

Comments
 (0)