Skip to content

Commit 1cf2c6b

Browse files
Fix another drop in coverage
1 parent 4e6f2b6 commit 1cf2c6b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

numcodecs/zarr3.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@
3535

3636
if is_wasm: # pragma: no cover
3737
pytest.skip("zarr3 doctests not supported in WASM", allow_module_level=True)
38-
except (ImportError, ModuleNotFoundError): # not running tests
38+
# not running tests
39+
except (ImportError, ModuleNotFoundError): # pragma: no cover
3940
pass
4041

4142
import asyncio

0 commit comments

Comments
 (0)