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.
pytest.importorskip
1 parent b7c5a81 commit c2fd265Copy full SHA for c2fd265
numcodecs/tests/test_blosc.py
@@ -6,6 +6,9 @@
6
import pytest
7
8
9
+pytest.importorskip("numcodecs.blosc")
10
+
11
12
from numcodecs import blosc
13
from numcodecs.blosc import Blosc
14
from numcodecs.tests.common import (check_encode_decode,
numcodecs/tests/test_lz4.py
@@ -2,6 +2,10 @@
2
3
4
import numpy as np
5
+import pytest
+pytest.importorskip("numcodecs.lz4")
from numcodecs.lz4 import LZ4
numcodecs/tests/test_zstd.py
+pytest.importorskip("numcodecs.zstd")
from numcodecs.zstd import Zstd
0 commit comments