ansible/test/integration/targets/nxos_igmp/tasks/cli.yaml

26 lines
642 B
YAML
Raw Normal View History

2017-08-14 17:58:09 +02:00
---
- name: collect common cli test cases
2017-08-14 17:58:09 +02:00
find:
paths: "{{ role_path }}/tests/common"
2017-08-14 17:58:09 +02:00
patterns: "{{ testcase }}.yaml"
register: test_cases
- name: collect cli test cases
find:
paths: "{{ role_path }}/tests/cli"
patterns: "{{ testcase }}.yaml"
register: cli_cases
- set_fact:
test_cases:
files: "{{ test_cases.files }} + {{ cli_cases.files }}"
2017-08-14 17:58:09 +02:00
- name: set test_items
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
- name: run test case
include: "{{ test_case_to_run }} connection={{ cli }}"
2017-08-14 17:58:09 +02:00
with_items: "{{ test_items }}"
loop_control:
loop_var: test_case_to_run