diff options
author | mattip <matti.picus@gmail.com> | 2022-05-02 11:31:27 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2022-05-02 11:31:27 +0300 |
commit | b6ffbdaf42caba608e9e43f8309730b9a60d6584 (patch) | |
tree | 250af43a2dd5520baa8bc40d9288cf5d493c4e5f /numpy/lib/tests | |
parent | 0eaa40db3a2f6bef26c0d7cc28eacf4f6d461917 (diff) | |
download | numpy-b6ffbdaf42caba608e9e43f8309730b9a60d6584.tar.gz |
TEST: on PyPy, skip hanging slow test [wheel build]
Diffstat (limited to 'numpy/lib/tests')
-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): |