summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/any_errors_fatal/50897.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/any_errors_fatal/50897.yml')
-rw-r--r--test/integration/targets/any_errors_fatal/50897.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/integration/targets/any_errors_fatal/50897.yml b/test/integration/targets/any_errors_fatal/50897.yml
new file mode 100644
index 0000000..1d09eb1
--- /dev/null
+++ b/test/integration/targets/any_errors_fatal/50897.yml
@@ -0,0 +1,19 @@
+- hosts: testhost,testhost2
+ gather_facts: no
+ any_errors_fatal: yes
+ tasks:
+ - name: EXPECTED FAILURE include_role that doesn't exist
+ include_role:
+ name: 'non-existant-role'
+ when:
+ - inventory_hostname == 'testhost2'
+ - test_name == 'test_include_role'
+
+ - name: EXPECTED FAILURE include_tasks that don't exist
+ include_tasks: non-existant.yml
+ when:
+ - inventory_hostname == 'testhost2'
+ - test_name == 'test_include_tasks'
+
+ - debug:
+ msg: 'any_errors_fatal_this_should_never_be_reached'