37d1b3f1cf
(and a few unicode tests because they make clearer what we're testing) works. disabled for now since they mostly do not pass on 1.8. We'll want to enable them when we start integration testing the v2 tree.
44 lines
1.8 KiB
YAML
44 lines
1.8 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_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_changed_when, tags: test_changed_when }
|
|
- { role: test_var_blending, parameterized_beats_default: 1234, tags: test_var_blending }
|
|
- { role: test_lineinfile, tags: test_lineinfile }
|
|
- { role: test_ignore_errors, tags: test_ignore_errors }
|
|
- { role: test_unarchive, tags: test_unarchive }
|
|
- { role: test_filters, tags: test_filters }
|
|
- { role: test_facts_d, tags: test_facts_d }
|
|
- { role: test_conditionals, tags: test_conditionals }
|
|
- { role: test_async, tags: test_async }
|
|
- { role: test_handlers, tags: test_handlers }
|
|
- { role: test_lookups, tags: test_lookups }
|
|
- { role: test_iterators, tags: test_iterators }
|
|
- { role: test_command_shell, tags: test_command_shell }
|
|
- { role: test_failed_when, tags: test_failed_when }
|
|
- { 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 }
|
|
# Turn on test_binary when we start testing v2
|
|
#- { role: test_binary, tags: test_binary }
|
|
|