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