f890c9692f
* bfd_interfaces: initial commit * fix state methods, add more UT * Add integration tests, support for N6K * minor comment cleanups * lint 1 * lint 2 * lint 3 * lint 4 * lint 5 * retrigger shippable * retrigger shippable * PR review updates: /bfd_echo/echo/, updated tests * fix overridden logic and integration test
20 lines
551 B
YAML
20 lines
551 B
YAML
---
|
|
- name: collect common test cases
|
|
find:
|
|
paths: "{{ role_path }}/tests/cli"
|
|
patterns: "{{ testcase }}.yaml"
|
|
connection: local
|
|
register: test_cases
|
|
|
|
- set_fact:
|
|
test_cases:
|
|
files: "{{ test_cases.files }}"
|
|
|
|
- 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 connection={{ cli }}"
|
|
with_items: "{{ test_items }}"
|
|
loop_control:
|
|
loop_var: test_case_to_run
|