Add how to run unit test link in testing_units_modules doc (#71523)
* Add how to run unit test link in testing_units_modules * Fix sanity test
This commit is contained in:
parent
1a06587f3b
commit
7a0e545700
1 changed files with 26 additions and 0 deletions
|
@ -174,6 +174,32 @@ Some ideas of what to test are:
|
||||||
* Test to see if any Python backtraces returned (that's a bug)
|
* Test to see if any Python backtraces returned (that's a bug)
|
||||||
* Test on different operating systems, or against different library versions
|
* Test on different operating systems, or against different library versions
|
||||||
|
|
||||||
|
Run sanity tests
|
||||||
|
````````````````
|
||||||
|
|
||||||
|
.. code:: shell
|
||||||
|
|
||||||
|
ansible-test sanity
|
||||||
|
|
||||||
|
More information: :ref:`testing_sanity`
|
||||||
|
|
||||||
|
Run unit tests
|
||||||
|
``````````````
|
||||||
|
|
||||||
|
.. code:: shell
|
||||||
|
|
||||||
|
ansible-test units
|
||||||
|
|
||||||
|
More information: :ref:`testing_units`
|
||||||
|
|
||||||
|
Run integration tests
|
||||||
|
`````````````````````
|
||||||
|
|
||||||
|
.. code:: shell
|
||||||
|
|
||||||
|
ansible-test integration -v ping
|
||||||
|
|
||||||
|
More information: :ref:`testing_integration`
|
||||||
|
|
||||||
Any potential issues should be added as comments on the pull request (and it's acceptable to comment if the feature works as well), remembering to include the output of ``ansible --version``
|
Any potential issues should be added as comments on the pull request (and it's acceptable to comment if the feature works as well), remembering to include the output of ``ansible --version``
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue