summaryrefslogtreecommitdiff
path: root/numpy/f2py/tests
diff options
context:
space:
mode:
authorRohit Goswami <rog32@hi.is>2022-04-30 17:44:33 +0000
committerRohit Goswami <rog32@hi.is>2022-04-30 17:44:33 +0000
commit4cd63418bc3134af68033e4f10d7f9958107703a (patch)
treecfb6266c33615436c6f5c06135cadd8f18a18a70 /numpy/f2py/tests
parentf42ccf635d9f644cafe7bda585d53b8f938220db (diff)
downloadnumpy-4cd63418bc3134af68033e4f10d7f9958107703a.tar.gz
BUG: Fix handling of skip-empty-wrappers
Diffstat (limited to 'numpy/f2py/tests')
-rw-r--r--numpy/f2py/tests/test_return_real.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/f2py/tests/test_return_real.py b/numpy/f2py/tests/test_return_real.py
index 35ab5008d..d9fecef1a 100644
--- a/numpy/f2py/tests/test_return_real.py
+++ b/numpy/f2py/tests/test_return_real.py
@@ -48,9 +48,9 @@ class TestReturnReal(util.F2PyTest):
@pytest.mark.skipif(
- platform.system() == "Darwin" or platform.system() == "Windows",
+ platform.system() == "Darwin",
reason="Prone to error when run with numpy/f2py/tests on mac os, "
- "and windows, but not when run in isolation",
+ "but not when run in isolation",
)
class TestCReturnReal(TestReturnReal):
suffix = ".pyf"