We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
checksum32
crc32
1 parent 7523fc6 commit 4b3dc36Copy full SHA for 4b3dc36
numcodecs/tests/test_checksum32.py
@@ -3,7 +3,11 @@
3
import numpy as np
4
import pytest
5
6
-from numcodecs.checksum32 import CRC32, CRC32C, Adler32
+try:
7
+ from numcodecs.checksum32 import CRC32, CRC32C, Adler32
8
+except ImportError: # pragma: no cover
9
+ pytest.skip("numcodecs.checksum32 not available", allow_module_level=True)
10
+
11
from numcodecs.tests.common import (
12
check_backwards_compatibility,
13
check_config,
0 commit comments