summaryrefslogtreecommitdiff
path: root/doc/develop/testing.rst
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2025-05-07 16:08:17 -0600
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2025-05-11 12:52:56 +0200
commitbe2bdfd0199f37fed0ce19f90840f79d185e20d1 (patch)
treebc2aefe74eb6e8e0bd032835a6c747d5f8e136c8 /doc/develop/testing.rst
parent2865a8590f29c20a64cf0ba986f697d9973ed963 (diff)
doc: Start improving our pytest documentation
Begin the work of documenting all of our pytests. To do this, we should have a directory under develop for it as there will be a large number of new files. As the current document is referenced externally in a number of locations, add the sphinx_reredirects module so that we can redirect from the old location to the new. Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'doc/develop/testing.rst')
-rw-r--r--doc/develop/testing.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/develop/testing.rst b/doc/develop/testing.rst
index 9114d11ad26..aa7786c99fd 100644
--- a/doc/develop/testing.rst
+++ b/doc/develop/testing.rst
@@ -33,7 +33,7 @@ You can also run a selection tests in parallel with::
make pcheck
All of the above use the test/run script with a paremeter to select which tests
-are run. See :doc:`py_testing` for more information.
+are run. See :doc:`pytest/usage` for more information.
Sandbox
@@ -69,7 +69,7 @@ build::
./test/py/test.py --bd sandbox_spl --build -k test_spl
-See :doc:`py_testing` for more information about the pytest suite.
+See :doc:`pytest/usage` for more information about the pytest suite.
See :doc:`tests_sandbox` for how to run tests directly (not through pytest).