13 lines
405 B
Bash
13 lines
405 B
Bash
|
#!/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\`\`:
|
||
|
|
||
|
$(for test in $(../../test/runner/ansible-test sanity --list-tests); do echo "- :doc:\`${test} <${test}>\`"; done)
|
||
|
|
||
|
This list is also available using \`\`ansible-test sanity --list-tests\`\`.
|
||
|
EOF
|