summaryrefslogtreecommitdiff
path: root/numpy/distutils/tests/test_shell_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/distutils/tests/test_shell_utils.py')
-rw-r--r--numpy/distutils/tests/test_shell_utils.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/distutils/tests/test_shell_utils.py b/numpy/distutils/tests/test_shell_utils.py
index 32bd283e5..696d38ddd 100644
--- a/numpy/distutils/tests/test_shell_utils.py
+++ b/numpy/distutils/tests/test_shell_utils.py
@@ -4,6 +4,7 @@ import json
import sys
from numpy.distutils import _shell_utils
+from numpy.testing import IS_WASM
argv_cases = [
[r'exe'],
@@ -49,6 +50,7 @@ def runner(Parser):
raise NotImplementedError
+@pytest.mark.skipif(IS_WASM, reason="Cannot start subprocess")
@pytest.mark.parametrize('argv', argv_cases)
def test_join_matches_subprocess(Parser, runner, argv):
"""
@@ -64,6 +66,7 @@ def test_join_matches_subprocess(Parser, runner, argv):
assert json.loads(json_out) == argv
+@pytest.mark.skipif(IS_WASM, reason="Cannot start subprocess")
@pytest.mark.parametrize('argv', argv_cases)
def test_roundtrip(Parser, argv):
"""