You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/include_import/tasks/test_include_tasks.yml

45 lines
1.0 KiB
YAML

- name: Test include_tasks
hosts: testhost
tasks:
- name: Test basic task include
include_tasks: tasks1.yml
- name: Assert that fact was set in include
assert:
that:
- set_in_tasks1
- name: Test conditional task include
include_tasks: tasks2.yml
when: no
- name: Assert that tasks were skipped
assert:
that:
- set_in_tasks2 is not defined
- block:
- name: Include tasks inside a block
include_tasks: tasks3.yml
- name: Assert that task3 was included
assert:
that:
- set_in_tasks3
always:
- name: Include task inside always
include_tasks: tasks4.yml
- name: Validate that variables set in previously improted tasks are passed down
include_tasks: validate3.yml
- name: Assert that tasks4 was included
assert:
that:
- set_in_tasks4
- name: include_tasks + action
action: include_tasks tasks1.yml