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 }
|
2016-08-04 16:20:45 -07:00
|
|
|
- { role: test_until, tags: test_until }
|
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 }
|
2016-07-07 10:38:41 -07:00
|
|
|
- { role: test_async, tags: [test_async, test_async_status, test_async_wrapper] }
|
2016-07-08 17:41:58 -07:00
|
|
|
- { role: test_command_shell, tags: [test_command_shell, test_command, test_shell] }
|
2016-06-23 17:52:49 -07:00
|
|
|
- { role: test_task_ordering, tags: test_task_ordering }
|
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-10-04 21:40:59 -05:00
|
|
|
- { role: test_embedded_module, tags: test_embedded_module }
|
2015-11-16 10:53:10 -08:00
|
|
|
- { role: test_add_host, tags: test_add_host }
|
2016-02-22 21:58:43 +00:00
|
|
|
- { role: test_binary, tags: test_binary }
|
2016-09-13 20:12:58 +02:00
|
|
|
- { role: test_loops, tags: test_loops }
|
2016-09-23 16:35:34 -07:00
|
|
|
#- { role: test_mount, tags: [test_mount, requires_root] }
|