You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
503 B
YAML
21 lines
503 B
YAML
- name: integration/runner/custom_binary_producing_junk.yml
|
|
hosts: test-targets
|
|
tasks:
|
|
- custom_binary_producing_junk:
|
|
foo: true
|
|
with_sequence: start=1 end={{end|default(1)}}
|
|
ignore_errors: true
|
|
register: out
|
|
|
|
|
|
- hosts: test-targets
|
|
any_errors_fatal: true
|
|
tasks:
|
|
- debug: msg={{out}}
|
|
- assert:
|
|
that: |
|
|
out.failed and
|
|
out.results[0].failed and
|
|
out.results[0].msg == 'MODULE FAILURE' and
|
|
out.results[0].rc == 0
|