ansible/test
Andrea Tartaglia 59227d8c31 Removed dict.iteritems() in several other files.
This is for py3 compatibility #18506
2016-12-14 08:01:45 -08:00
..
compile Fix compile errors in scripts. 2016-12-08 11:35:20 -05:00
integration Fix regression in search path behaviour 2016-12-14 10:33:14 -05:00
results Initial ansible-test implementation. (#18556) 2016-11-29 21:21:53 -08:00
runner Add --tox-sitepackages option to ansible-test. 2016-12-13 16:57:23 -08:00
sanity Removed dict.iteritems() in several other files. 2016-12-14 08:01:45 -08:00
units Removed dict.iteritems() in several other files. 2016-12-14 08:01:45 -08:00
utils Update log download url. 2016-12-13 16:26:10 -08:00
README.md Test reorganization and cleanup. (#18270) 2016-10-31 12:53:11 -07:00

Ansible Test System

Folders

units

Unit tests that test small pieces of code not suited for the integration test layer, usually very API based, and should leverage mock interfaces rather than producing side effects.

Playbook engine code is better suited for integration tests.

Requirements: sudo pip install paramiko PyYAML jinja2 httplib2 passlib nose mock

integration

Integration test layer, constructed using playbooks.

Some tests may require cloud credentials, others will not, and destructive tests are separated from non-destructive so a subset can be run on development machines.

learn more

hop into a subdirectory and see the associated README.md for more info.