diff options
author | Thomas Duvernay <td75013@hotmail.fr> | 2022-04-26 19:45:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-26 19:45:39 +0200 |
commit | 02f90f5f88511b4a58e7872f40bbe020f8d68e89 (patch) | |
tree | e2098bde7a86e94faf3e95cad7d48f18d007107f /doc/source/reference | |
parent | fd646bd693400ce408566674f266407672248cad (diff) | |
download | numpy-02f90f5f88511b4a58e7872f40bbe020f8d68e89.tar.gz |
DOC: Add missing functions in `numpy.testing` documentation
Diffstat (limited to 'doc/source/reference')
-rw-r--r-- | doc/source/reference/routines.testing.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/source/reference/routines.testing.rst b/doc/source/reference/routines.testing.rst index d9e98e941..e838c394e 100644 --- a/doc/source/reference/routines.testing.rst +++ b/doc/source/reference/routines.testing.rst @@ -27,6 +27,8 @@ Asserts assert_raises assert_raises_regex assert_warns + assert_no_warnings + assert_no_gc_cycles assert_string_equal Asserts (not recommended) @@ -38,9 +40,11 @@ functions for more consistent floating point comparisons. .. autosummary:: :toctree: generated/ + assert_ assert_almost_equal assert_approx_equal assert_array_almost_equal + print_assert_equal Decorators ---------- @@ -53,6 +57,7 @@ Decorators dec.skipif dec.slow decorate_methods + raises Test Running ------------ @@ -60,6 +65,8 @@ Test Running :toctree: generated/ Tester + clear_and_catch_warnings + measure run_module_suite rundocs suppress_warnings |