349e072a74
Looks like there are two pattern caches that need to be cleared for this to work- added the second one. Added integration tests for add_host to prevent future regressions.
47 lines
2 KiB
YAML
47 lines
2 KiB
YAML
- hosts: testhost
|
|
|
|
# these variables are defined here for variable blending tests only.
|
|
# in general, define test variables in the role/rolenamevars/main.yml
|
|
|
|
vars_files:
|
|
- vars_file.yml
|
|
vars:
|
|
vars_var: 123
|
|
|
|
gather_facts: True
|
|
roles:
|
|
- { role: test_ping, tags: test_ping }
|
|
- { role: test_var_blending, parameterized_beats_default: 1234, tags: test_var_blending }
|
|
- { role: test_special_vars, tags: test_special_vars }
|
|
- { role: test_ignore_errors, tags: test_ignore_errors }
|
|
- { role: test_conditionals, tags: test_conditionals }
|
|
- { role: test_iterators, tags: test_iterators }
|
|
- { role: test_lookups, tags: test_lookups }
|
|
- { role: test_changed_when, tags: test_changed_when }
|
|
- { role: test_failed_when, tags: test_failed_when }
|
|
- { role: test_handlers, tags: test_handlers }
|
|
- { role: test_copy, tags: test_copy }
|
|
- { role: test_stat, tags: test_stat }
|
|
- { role: test_template, tags: test_template }
|
|
- { role: test_file, tags: test_file }
|
|
- { role: test_fetch, tags: test_fetch }
|
|
- { role: test_synchronize, tags: test_synchronize }
|
|
- { role: test_assemble, tags: test_assemble }
|
|
- { role: test_subversion, tags: test_subversion }
|
|
- { role: test_git, tags: test_git }
|
|
- { role: test_hg, tags: test_hg }
|
|
- { role: test_lineinfile, tags: test_lineinfile }
|
|
- { role: test_unarchive, tags: test_unarchive }
|
|
- { role: test_filters, tags: test_filters }
|
|
- { role: test_facts_d, tags: test_facts_d }
|
|
- { role: test_async, tags: test_async }
|
|
- { role: test_command_shell, tags: test_command_shell }
|
|
- { role: test_script, tags: test_script }
|
|
- { role: test_authorized_key, tags: test_authorized_key }
|
|
- { role: test_get_url, tags: test_get_url }
|
|
- { role: test_embedded_module, tags: test_embedded_module }
|
|
- { role: test_uri, tags: test_uri }
|
|
- { role: test_add_host, tags: test_add_host }
|
|
# Turn on test_binary when we start testing v2
|
|
#- { role: test_binary, tags: test_binary }
|
|
|