Skip to content

Commit dacbd09

Browse files
Fix skip reason error message for entrypoint test
1 parent 4c348f2 commit dacbd09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numcodecs/tests/test_entrypoints_backport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def get_entrypoints_with_importlib_metadata_loaded():
3030
assert cls.codec_id == "test"
3131

3232

33-
@pytest.mark.skipif(is_wasm, reason="Threads are not supported in Pyodide/WASM")
33+
@pytest.mark.skipif(is_wasm, reason="Spawning processes is not supported in Pyodide/WASM")
3434
def test_entrypoint_codec_with_importlib_metadata():
3535
p = Process(target=get_entrypoints_with_importlib_metadata_loaded)
3636
p.start()

0 commit comments

Comments
 (0)