summaryrefslogtreecommitdiff
path: root/numpy/f2py/tests
diff options
context:
space:
mode:
authorRohit Goswami <rog32@hi.is>2022-04-30 15:43:15 +0000
committerRohit Goswami <rog32@hi.is>2022-04-30 15:43:15 +0000
commit963152e3126969d8f08f12ed6a78e07cd9bcb934 (patch)
treeb48f44fa37f10cbf2f0808408f620092f652dcef /numpy/f2py/tests
parentfd7869b7ec5973478a4ea7900aad0fa593f1375b (diff)
downloadnumpy-963152e3126969d8f08f12ed6a78e07cd9bcb934.tar.gz
MAINT: Skip buggy windows test
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 d9fecef1a..35ab5008d 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",
+ platform.system() == "Darwin" or platform.system() == "Windows",
reason="Prone to error when run with numpy/f2py/tests on mac os, "
- "but not when run in isolation",
+ "and windows, but not when run in isolation",
)
class TestCReturnReal(TestReturnReal):
suffix = ".pyf"