2014-02-13 18:28:29 -05:00
|
|
|
- hosts: testhost
|
2014-02-20 12:51:13 -05:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2014-02-13 18:28:29 -05:00
|
|
|
gather_facts: True
|
|
|
|
roles:
|
2014-02-20 17:41:12 -05:00
|
|
|
- { role: test_ping, tags: test_ping }
|
2015-07-10 01:53:59 -04:00
|
|
|
- { 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 }
|
2014-02-13 18:28:29 -05:00
|
|
|
- { role: test_copy, tags: test_copy }
|
2014-02-19 16:45:18 -05:00
|
|
|
- { role: test_stat, tags: test_stat }
|
2014-02-19 14:54:45 -05:00
|
|
|
- { role: test_template, tags: test_template }
|
2014-02-19 16:23:07 -05:00
|
|
|
- { role: test_file, tags: test_file }
|
2014-02-19 16:42:02 -05:00
|
|
|
- { role: test_fetch, tags: test_fetch }
|
2014-02-19 17:32:32 -05:00
|
|
|
- { role: test_synchronize, tags: test_synchronize }
|
2014-02-24 11:21:41 -06:00
|
|
|
- { role: test_assemble, tags: test_assemble }
|
2014-02-19 17:38:01 -05:00
|
|
|
- { role: test_subversion, tags: test_subversion }
|
2014-02-19 21:13:47 -05:00
|
|
|
- { role: test_git, tags: test_git }
|
2014-02-20 11:20:11 -05:00
|
|
|
- { role: test_hg, tags: test_hg }
|
2014-02-20 13:31:37 -05:00
|
|
|
- { role: test_lineinfile, tags: test_lineinfile }
|
2014-02-20 13:59:46 -05:00
|
|
|
- { role: test_unarchive, tags: test_unarchive }
|
2014-02-20 15:23:44 -05:00
|
|
|
- { role: test_filters, tags: test_filters }
|
2014-02-20 16:05:45 -05:00
|
|
|
- { role: test_facts_d, tags: test_facts_d }
|
2014-02-21 10:00:01 -05:00
|
|
|
- { role: test_async, tags: test_async }
|
2014-02-23 14:51:26 -06:00
|
|
|
- { role: test_command_shell, tags: test_command_shell }
|
2014-02-24 11:21:41 -06:00
|
|
|
- { role: test_script, tags: test_script }
|
2014-04-02 14:25:24 -05:00
|
|
|
- { role: test_authorized_key, tags: test_authorized_key }
|
2014-09-03 10:04:02 -05:00
|
|
|
- { role: test_get_url, tags: test_get_url }
|
2014-10-04 21:40:59 -05:00
|
|
|
- { role: test_embedded_module, tags: test_embedded_module }
|
2015-05-14 14:21:29 -07:00
|
|
|
- { role: test_uri, tags: test_uri }
|
2015-11-16 10:53:10 -08:00
|
|
|
- { role: test_add_host, tags: test_add_host }
|
2014-12-10 11:37:32 -08:00
|
|
|
# Turn on test_binary when we start testing v2
|
|
|
|
#- { role: test_binary, tags: test_binary }
|
2014-10-04 21:40:59 -05:00
|
|
|
|