ansible/test/integration/targets/any_errors_fatal/18602.yml
Adrian Likins b20ba105c2 intg tests for 'any_errors_fatal' (#25813)
* start adding intg tests for any_errors_fatal

* updates

* show captured output

flip conditional for on_includes

* cleanup/ci poke

* fix typos

* Add 'EXPECTED FAILURE' to tasks names for expected failures
2018-01-29 15:47:13 -05:00

21 lines
667 B
YAML

---
- hosts: localhost
any_errors_fatal: true
tasks:
- block:
- debug: msg='i execute normally'
- name: EXPECTED FAILURE primary block command
command: /bin/false
- debug: msg='i never execute, cause ERROR!'
rescue:
- name: rescue block debug
debug: msg='I caught an error'
- name: EXPECTED FAILURE rescue block command
command: /bin/false
- debug: msg='I also never execute :-('
always:
- name: A debug task in the always block
debug: msg="this always executes"
- set_fact:
always_ran: true