mirror of
https://github.com/ansible/ansible.git
synced 2026-08-02 16:12:06 +02:00
* Detect failure in always block after rescue Fixes #70000 ci_complete * Add more tests
13 lines
236 B
YAML
13 lines
236 B
YAML
- hosts: localhost
|
|
gather_facts: no
|
|
tasks:
|
|
- block:
|
|
- name: EXPECTED FAILURE
|
|
fail:
|
|
msg: Failure in block
|
|
always:
|
|
- debug:
|
|
msg: Always
|
|
- debug:
|
|
msg: DID NOT RUN
|