summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/any_errors_fatal/50897.yml
blob: 1d09eb18f03af405328dcc3341f46b6fca9f64db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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'