f1a060743a
* Doc build warning/broken link clean-a-palooza, WIP commit 1.
* Fixed broken anchor
* Fixing additional broken links; converting from doc to ref.
* Fix anchor
(cherry picked from commit 381359a8f8
)
16 lines
417 B
Bash
Executable file
16 lines
417 B
Bash
Executable file
#!/bin/bash -eu
|
|
|
|
cat <<- EOF > ../docsite/rst/dev_guide/testing/sanity/index.rst
|
|
Sanity Tests
|
|
============
|
|
|
|
The following sanity tests are available as \`\`--test\`\` options for \`\`ansible-test sanity\`\`.
|
|
This list is also available using \`\`ansible-test sanity --list-tests\`\`.
|
|
|
|
.. toctree::
|
|
:maxdepth: 1
|
|
|
|
$(for test in $(../../test/runner/ansible-test sanity --list-tests); do echo " ${test}"; done)
|
|
|
|
|
|
EOF
|