summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/blocks/always_failure_no_rescue_rc.yml
blob: 924643ce0fe081fe5669e87c2250fe2e88504857 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
- hosts: localhost
  gather_facts: no
  tasks:
    - block:
        - name: EXPECTED FAILURE
          fail:
            msg: Failure in block
      always:
        - name: EXPECTED FAILURE
          fail:
            msg: Failure in always
    - debug:
        msg: DID NOT RUN