From 930478bd1e62a594448b1270004236e84307b0fb Mon Sep 17 00:00:00 2001 From: Maxwell G Date: Wed, 25 Oct 2023 03:30:42 +0000 Subject: [PATCH] documentation_contributions: use tests/checkers.py tests/sanity.py was renamed to tests/checker.py in https://github.com/ansible/ansible-documentation/pull/563, but I never changed the documentation_contributions doc. Mea culpa. --- docs/docsite/rst/community/documentation_contributions.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docsite/rst/community/documentation_contributions.rst b/docs/docsite/rst/community/documentation_contributions.rst index 18541d36178..5946337f44b 100644 --- a/docs/docsite/rst/community/documentation_contributions.rst +++ b/docs/docsite/rst/community/documentation_contributions.rst @@ -237,8 +237,8 @@ When you submit a documentation pull request, automated tests are run. Those sam .. code-block:: bash make clean -C docs/docsite - python tests/sanity.py docs-build - python tests/sanity.py rstcheck + python tests/checkers.py docs-build + python tests/checkers.py rstcheck It is recommended to run tests on a clean copy of the repository, which is the purpose of the ``make clean`` command.