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