diff options
author | Hood Chatham <roberthoodchatham@gmail.com> | 2022-11-10 11:54:21 -0800 |
---|---|---|
committer | Hood Chatham <roberthoodchatham@gmail.com> | 2022-11-11 02:52:06 -0800 |
commit | 08c6e9c142e619ac5175b6a13342ba2f2c571ddd (patch) | |
tree | 8be92e0f2d27dd9c888fde95c2dfe46a305ba892 /numpy/f2py/tests/test_abstract_interface.py | |
parent | 6aacc5167983d7c6f8689d7039294f2fc0d5f5fb (diff) | |
download | numpy-08c6e9c142e619ac5175b6a13342ba2f2c571ddd.tar.gz |
TST: Skip tests that are not currently supported in wasm
Diffstat (limited to 'numpy/f2py/tests/test_abstract_interface.py')
-rw-r--r-- | numpy/f2py/tests/test_abstract_interface.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/f2py/tests/test_abstract_interface.py b/numpy/f2py/tests/test_abstract_interface.py index 29e4b0647..42902913e 100644 --- a/numpy/f2py/tests/test_abstract_interface.py +++ b/numpy/f2py/tests/test_abstract_interface.py @@ -1,9 +1,12 @@ from pathlib import Path +import pytest import textwrap from . import util from numpy.f2py import crackfortran +from numpy.testing import IS_WASM +@pytest.mark.skipif(IS_WASM, reason="Cannot start subprocess") class TestAbstractInterface(util.F2PyTest): sources = [util.getpath("tests", "src", "abstract_interface", "foo.f90")] |