ansible/test
Toshio Kuratomi 0b440a9289 Code smell test for iteritems and itervalues (#19292)
* Code smell test for iteritems and itervalues

* Change the keydict object in authorized_keys so it doesn't throw a false postive

keydict is a bad data structure anyway.  We don't use the iteritems and
itervalues methods so just disable them so that the code-smell tests do
not trigger on it.

* Change release templates so they work with py3
2016-12-14 12:16:16 -08:00
..
compile Fix compile errors in scripts. 2016-12-08 11:35:20 -05:00
integration Fix UnboundLocalError remote_head in git (#19057) 2016-12-14 08:36:15 -08: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 Code smell test for iteritems and itervalues (#19292) 2016-12-14 12:16:16 -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.