diff options
author | mattip <matti.picus@gmail.com> | 2018-05-13 17:34:42 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2018-06-25 14:32:50 -0700 |
commit | f9336158330f2987db2c132ea22cbda5a94a7c68 (patch) | |
tree | 346370edd71cc18f2f29538e96a30a8f6808db74 /doc/source/reference | |
parent | 464f79eb1d05bf938d16b49da1c39a4e02506fa3 (diff) | |
download | numpy-f9336158330f2987db2c132ea22cbda5a94a7c68.tar.gz |
DOC: link to TESTS.rst.txt testing guidelines document, tweak testing docs
Diffstat (limited to 'doc/source/reference')
-rw-r--r-- | doc/source/reference/routines.testing.rst | 14 | ||||
-rw-r--r-- | doc/source/reference/testing.rst | 7 |
2 files changed, 19 insertions, 2 deletions
diff --git a/doc/source/reference/routines.testing.rst b/doc/source/reference/routines.testing.rst index ad95bb399..5a52a40d6 100644 --- a/doc/source/reference/routines.testing.rst +++ b/doc/source/reference/routines.testing.rst @@ -1,3 +1,5 @@ +.. _numpy-testing: + Test Support (:mod:`numpy.testing`) =================================== @@ -6,8 +8,9 @@ Test Support (:mod:`numpy.testing`) Common test support for all numpy test scripts. This single module should provide all the common functionality for numpy -tests in a single location, so that test scripts can just import it and -work right away. +tests in a single location, so that :ref:`test scripts +<development-environment>` can just import it and work right away. For +background, see the :ref:`testing-guidelines` Asserts @@ -50,3 +53,10 @@ Test Running run_module_suite rundocs suppress_warnings + +Guidelines +---------- + +.. toctree:: + + testing diff --git a/doc/source/reference/testing.rst b/doc/source/reference/testing.rst new file mode 100644 index 000000000..72780dd44 --- /dev/null +++ b/doc/source/reference/testing.rst @@ -0,0 +1,7 @@ +.. _testing-guidelines: + +Testing Guidelines +================== + +.. include:: ../../TESTS.rst.txt + :start-line: 6 |