summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/eos_l2_interface/tasks/eapi.yaml
blob: bda1df677a4ac09b7aa95346c258f5212d91833c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
- name: collect all eapi test cases
  find:
    paths: "{{ role_path }}/tests/eapi"
    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 case (connection=local)
  include: "{{ test_case_to_run }} ansible_connection=local"
  with_items: "{{ test_items }}"
  loop_control:
    loop_var: test_case_to_run