fed0496005
* Fix eos_facts over local eapi * Much better feedback when querying resources over local * No need for that anymore * Update comment * Mkae sure facts are tested on local resource modules might break this otherwise * This test was not checking anything * Pass over nxos_facts as well
22 lines
647 B
YAML
22 lines
647 B
YAML
---
|
|
- name: collect all eapi test cases
|
|
find:
|
|
paths: "{{ role_path }}/tests/eapi"
|
|
patterns: "{{ testcase }}.yaml"
|
|
register: test_cases
|
|
delegate_to: localhost
|
|
|
|
- name: set test_items
|
|
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
|
|
|
- name: run test cases (connection=httpapi)
|
|
include: "{{ test_case_to_run }} ansible_connection=httpapi"
|
|
with_items: "{{ test_items }}"
|
|
loop_control:
|
|
loop_var: test_case_to_run
|
|
|
|
- name: run test cases (connection=local)
|
|
include: "{{ test_case_to_run }} ansible_connection=local"
|
|
with_items: "{{ test_items }}"
|
|
loop_control:
|
|
loop_var: test_case_to_run
|