diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2019-09-21 14:54:02 +0200 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@gmail.com> | 2019-09-21 15:24:44 +0200 |
commit | d8b1a87e4bea9acbdfac0e41d3a02a6b14f5961e (patch) | |
tree | 1d2561df106933bd7fa1e9e7a638f98aedf8e4ed /doc/source/reference/routines.testing.rst | |
parent | 815061c3ce9672b850147a0bc3535ebb220913e0 (diff) | |
download | numpy-d8b1a87e4bea9acbdfac0e41d3a02a6b14f5961e.tar.gz |
DEP: remove deprecate (and private) numpy.testing submodules.
Removes these files that were deprecated since 1.15.0:
- numpy/testing/decorators.py
- numpy/testing/noseclasses.py
- numpy/testing/nosetester.py
This also resolves a failure in the recently introduced tests
in `test_public_api.py` (see gh-14454). Closes gh-14566
Diffstat (limited to 'doc/source/reference/routines.testing.rst')
-rw-r--r-- | doc/source/reference/routines.testing.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/source/reference/routines.testing.rst b/doc/source/reference/routines.testing.rst index c676dec07..98ce3f377 100644 --- a/doc/source/reference/routines.testing.rst +++ b/doc/source/reference/routines.testing.rst @@ -37,11 +37,11 @@ Decorators .. autosummary:: :toctree: generated/ - decorators.deprecated - decorators.knownfailureif - decorators.setastest - decorators.skipif - decorators.slow + dec.deprecated + dec.knownfailureif + dec.setastest + dec.skipif + dec.slow decorate_methods Test Running |