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.
1 parent d6c43ef commit 55a2690Copy full SHA for 55a2690
numcodecs/tests/test_zarr3.py
@@ -4,6 +4,7 @@
4
import pytest
5
6
import numcodecs.zarr3
7
+from numcodecs.tests.common import is_wasm
8
9
zarr = pytest.importorskip("zarr")
10
@@ -46,6 +47,7 @@ def test_docstring(codec_class: type[numcodecs.zarr3._NumcodecsCodec]):
46
47
assert "See :class:`numcodecs." in codec_class.__doc__
48
49
50
+@pytest.mark.skipif(is_wasm, reason="Threads are not supported in Pyodide/WASM")
51
@pytest.mark.parametrize(
52
"codec_class",
53
[
0 commit comments