ansible/test/sanity
Nathaniel Case 689b93bf14 Junos_config unicode (#23369)
* Try to handle unicode output more sensibly

* Appears I'm getting latin1 instead

Ugh.
2017-04-27 11:44:26 -04:00
..
ansible-doc Remove remnants of obsolete fireball mode. 2016-12-09 16:56:34 -07:00
code-smell Fix bugs in ansible-test units command. (#24044) 2017-04-27 11:21:11 +08:00
pep8 Junos_config unicode (#23369) 2017-04-27 11:44:26 -04:00
pylint Fix var precedence check to support python 3. (#23552) 2017-04-13 00:07:40 -07:00
rstcheck Add rstcheck to ansible-test and correct issues. (#23550) 2017-04-13 10:28:52 -07:00
shellcheck Disable newer shellcheck tests which don't pass. 2017-02-27 22:31:47 -08:00
validate-modules Update validate-modules to ignore *.rst files. 2017-04-26 15:48:40 +08:00
README.rst Expand test documentation. (#23598) 2017-04-13 17:46:21 -07:00

Sanity Tests

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.

Available Tests

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

This list is a combination of two different categories of tests.

Code Smell Tests

Miscellaneous scripts used for enforcing coding standards and requirements, identifying trip hazards, etc.

These tests are listed and accessed by script name. There is no actual test named code-smell.

All executable scripts added to the code-smell directory are automatically detected and executed by ansible-test.

Scripts in the directory which fail can be skipped by adding them to skip.txt. This is useful for scripts which identify issues that have not yet been resolved in the code base.

Files tested are specific to the individual test scripts and are not affected by command line arguments.

Built-in Tests

These tests are integrated directly into ansible-test. All files relevant to each test are tested unless specific files are specified.

ansible-doc

Verifies that ansible-doc can parse module documentation on all supported python versions.

pep8

Python static analysis for PEP 8 style guideline compliance.

pylint

Python static analysis for common programming errors.

rstcheck

Check reStructuredText files for syntax and formatting issues.

shellcheck

Static code analysis for shell scripts using the excellent shellcheck tool.

validate-modules

Analyze modules for common issues in code and documentation.

yamllint

Check YAML files for syntax and formatting issues.