diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-04-15 19:55:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-15 19:55:30 +0300 |
commit | c31ba764540a12843b3caf711b447fe3e08c5a46 (patch) | |
tree | 5e16e5de3641e007650505c93eab09420e61e4d0 /numpy/lib | |
parent | fc1f196584ff6dd530982febba2322679317c632 (diff) | |
parent | 6736d8c53ab80178195da8b5fe61e174cc5ea26e (diff) | |
download | numpy-c31ba764540a12843b3caf711b447fe3e08c5a46.tar.gz |
Merge pull request #15967 from anirudh2290/slow_pypy_impl
TST: Add slow_pypy support
Diffstat (limited to 'numpy/lib')
-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 8ce20a116..9abde3e11 100644 --- a/numpy/lib/tests/test_io.py +++ b/numpy/lib/tests/test_io.py @@ -278,6 +278,7 @@ class TestSavezLoad(RoundtripTest): fp.seek(0) assert_(not fp.closed) + @pytest.mark.slow_pypy def test_closing_fid(self): # Test that issue #1517 (too many opened files) remains closed # It might be a "weak" test since failed to get triggered on |