ansible/test
Lumír 'Frenzy' Balhar 84544ee8fd Fix AST nodes for Python 3 and enable dependent test_uri (#18597)
* Enable tests on python 3 for uri

* Added one more node type to SAFE_NODES into safe_eval module.

ast.USub represents unary operators. This is necessary for
parsing some unusual but still valid JSON files during testing
with Python 3.
2016-12-13 07:37:39 -08:00
..
compile Fix compile errors in scripts. 2016-12-08 11:35:20 -05:00
integration veos-dut-01 is down, so use veos01 (#19299) 2016-12-13 14:40:52 +00:00
results Initial ansible-test implementation. (#18556) 2016-11-29 21:21:53 -08:00
runner Run all tests when no last successful commit. 2016-12-08 11:35:20 -05:00
sanity Remove remnants of obsolete fireball mode. 2016-12-09 16:56:34 -07:00
units Fix synchronize retries (#18535) 2016-12-12 13:33:30 -08:00
utils Fix AST nodes for Python 3 and enable dependent test_uri (#18597) 2016-12-13 07:37:39 -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.