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.
ansible/test/integration/targets/loop_control/break_when.yml

18 lines
310 B
YAML

- hosts: localhost
gather_facts: false
tasks:
- debug: var=item
changed_when: false
loop:
- 1
- 2
- 3
- 4
loop_control:
break_when: item >= 2
register: untiltest
- assert:
that:
- untiltest['results']|length == 2