diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2019-05-11 10:29:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-11 10:29:07 -0700 |
commit | d38d4507ac015d7994c42318868987bf414fab78 (patch) | |
tree | ab992352b67ad9cd1ca8d413cd6d59799fe428ef /numpy/testing/tests/test_utils.py | |
parent | 3337865dd9f1c6141199577a8a7a432551a04f9e (diff) | |
parent | 92d74d04ef5de9dfa7f5c91cdb742f5e9a318bc5 (diff) | |
download | numpy-d38d4507ac015d7994c42318868987bf414fab78.tar.gz |
Merge pull request #13482 from mattip/durations
TEST: add duration report to tests, speed up two outliers
Diffstat (limited to 'numpy/testing/tests/test_utils.py')
-rw-r--r-- | numpy/testing/tests/test_utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/testing/tests/test_utils.py b/numpy/testing/tests/test_utils.py index 9081f3d6e..643d143ee 100644 --- a/numpy/testing/tests/test_utils.py +++ b/numpy/testing/tests/test_utils.py @@ -1498,6 +1498,7 @@ class TestAssertNoGcCycles(object): with assert_raises(AssertionError): assert_no_gc_cycles(make_cycle) + @pytest.mark.slow def test_fails(self): """ Test that in cases where the garbage cannot be collected, we raise an |