2017-07-14 15:24:45 +02:00
|
|
|
#!/bin/bash -eu
|
|
|
|
|
|
|
|
cat <<- EOF > ../docsite/rst/dev_guide/testing/sanity/index.rst
|
|
|
|
Sanity Tests
|
|
|
|
============
|
|
|
|
|
2018-03-14 20:44:21 +01:00
|
|
|
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)
|
2017-07-14 15:24:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
EOF
|