diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2022-05-04 21:01:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-04 21:01:04 +0200 |
commit | c62930f9ec6de9d03e8622c344bbdadece2b1af7 (patch) | |
tree | 75b04ab44e94f3ea1b990fdf88d10f97257abd3e /numpy/lib/tests/test_io.py | |
parent | f9089b301f7d8cedefb63f23fc337114c1990a02 (diff) | |
parent | 0a9634c87b04b15b75e2906387b56892cd91b656 (diff) | |
download | numpy-c62930f9ec6de9d03e8622c344bbdadece2b1af7.tar.gz |
Merge pull request #21425 from mattip/skip-pypy
TEST: on PyPy, skip hanging slow test and require-mem on second [wheel build]
Diffstat (limited to 'numpy/lib/tests/test_io.py')
-rw-r--r-- | numpy/lib/tests/test_io.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/lib/tests/test_io.py b/numpy/lib/tests/test_io.py index a2758123b..38a751d11 100644 --- a/numpy/lib/tests/test_io.py +++ b/numpy/lib/tests/test_io.py @@ -203,6 +203,7 @@ class TestSavezLoad(RoundtripTest): self.arr_reloaded.fid.close() os.remove(self.arr_reloaded.fid.name) + @pytest.mark.skipif(IS_PYPY, reason="Hangs on PyPy") @pytest.mark.skipif(not IS_64BIT, reason="Needs 64bit platform") @pytest.mark.slow def test_big_arrays(self): |