summaryrefslogtreecommitdiff
path: root/test/integration/targets/include_when_parent_is_dynamic/tasks.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/include_when_parent_is_dynamic/tasks.yml')
-rw-r--r--test/integration/targets/include_when_parent_is_dynamic/tasks.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/integration/targets/include_when_parent_is_dynamic/tasks.yml b/test/integration/targets/include_when_parent_is_dynamic/tasks.yml
new file mode 100644
index 0000000000..6831245c92
--- /dev/null
+++ b/test/integration/targets/include_when_parent_is_dynamic/tasks.yml
@@ -0,0 +1,12 @@
+# intentionally stop execution of the play before reaching the include below
+# if the include is dynamic as expected it will not trigger a syntax error
+# however, if the include is static a syntax error will occur
+- name: EXPECTED FAILURE
+ fail:
+ msg:
+ This task should always execute.
+ The playbook would have failed due to a syntax error in 'syntax_error.yml' when attempting a static include of that file.
+
+# perform an include task which should be static if all of the task's parents are static, otherwise it should be dynamic
+# this file was loaded using include_tasks, which is dynamic, so this include should also be dynamic
+- include: syntax_error.yml