6b5c7f7c42
* Move module_utils * Add eos_interfaces and deprecate eos_interface * Add boilerplate, update ignores.txt * Try to reconcile eos provider documentation with argspec * Try to work around unknown interfaces * Move param_list_to_dict to utils
16 lines
469 B
YAML
16 lines
469 B
YAML
---
|
|
- name: collect all cli test cases
|
|
find:
|
|
paths: "{{ role_path }}/tests/cli"
|
|
patterns: "{{ testcase }}.yaml"
|
|
delegate_to: localhost
|
|
register: test_cases
|
|
|
|
- name: set test_items
|
|
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
|
|
|
- name: run test cases (connection=network_cli)
|
|
include: "{{ test_case_to_run }} ansible_connection=network_cli"
|
|
with_items: "{{ test_items }}"
|
|
loop_control:
|
|
loop_var: test_case_to_run
|