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 0847241 commit b6713caCopy full SHA for b6713ca
numcodecs/tests/test_entrypoints_backport.py
@@ -6,6 +6,7 @@
6
import pytest
7
8
import numcodecs.registry
9
+from numcodecs.tests.common import is_wasm
10
11
if not importlib.util.find_spec("importlib_metadata").loader: # pragma: no cover
12
pytest.skip(
@@ -28,6 +29,7 @@ def get_entrypoints_with_importlib_metadata_loaded():
28
29
assert cls.codec_id == "test"
30
31
32
+@pytest.mark.skipif(is_wasm, reason="Threads are not supported in Pyodide/WASM")
33
def test_entrypoint_codec_with_importlib_metadata():
34
p = Process(target=get_entrypoints_with_importlib_metadata_loaded)
35
p.start()
0 commit comments