ansible/docs/docsite/rst/dev_guide/testing_sanity.rst
Andrew Klychkov 598ead965d
Dev guide: add notes about different image types for integration and unit/sanity tests (#68663)
* Dev guide: add notes about different image types for integration and unit/sanity tests
* Update docs/docsite/rst/dev_guide/testing_integration.rst

Co-authored-by: Matt Clay <matt@mystile.com>
2020-04-07 09:17:44 -05:00

1.2 KiB

orphan

Sanity Tests

Topics

Sanity tests are made up of scripts and tools used to perform static code analysis. The primary purpose of these tests is to enforce Ansible coding standards and requirements.

Tests are run with ansible-test sanity. All available tests are run unless the --test option is used.

How to run

Note

To run sanity tests using docker, always use the default docker image by passing the --docker or --docker default argument.

source hacking/env-setup

# Run all sanity tests
ansible-test sanity

# Run all sanity tests against against certain files
ansible-test sanity lib/ansible/modules/files/template.py

# Run all tests inside docker (good if you don't have dependencies installed)
ansible-test sanity --docker default

# Run validate-modules against a specific file
ansible-test sanity --test validate-modules lib/ansible/modules/files/template.py

Available Tests

Tests can be listed with ansible-test sanity --list-tests.

See the full list of sanity tests <all_sanity_tests>, which details the various tests and details how to fix identified issues.