summaryrefslogtreecommitdiffstats
path: root/test/samples/ignore_errors.yml
blob: ff6488f739fc39af2c544feee608139fb7c8ae0b (plain)
1
2
3
4
5
6
7
8
9
- hosts: localhost
  connection: local
  gather_facts: no
  tasks:
  - fail:
    ignore_errors: yes
  - debug: msg="you should still see this"
  - fail:
  - debug: msg="you should NOT see this"