13 lines
229 B
YAML
13 lines
229 B
YAML
---
|
|
|
|
- include: test-defaults.yml
|
|
|
|
- hosts: localhost
|
|
connection: local
|
|
tasks:
|
|
- name: Fail if any tests failed
|
|
fail:
|
|
msg: >
|
|
Test failures: {{ test_failures }}
|
|
when: test_failures is defined
|