c8ba8bdd6d
* Add ios_static_route module * Add ios_static_route integration tests * Add platform agnostic integration tests for IOS * Replace unicode function to ansible module_utils to_text * Add collections handling logic * Add integration tests for collections * Make collections and prefix mutually exclusive * Add net_static_route integration tests for collections * Do not store load_config return value, as it returns nothing
16 lines
412 B
YAML
16 lines
412 B
YAML
---
|
|
- name: collect all cli test cases
|
|
find:
|
|
paths: "{{ role_path }}/tests/cli"
|
|
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 case
|
|
include: "{{ test_case_to_run }}"
|
|
with_items: "{{ test_items }}"
|
|
loop_control:
|
|
loop_var: test_case_to_run
|