summaryrefslogtreecommitdiff
path: root/test/integration/targets/eos_l2_interfaces/tasks/main.yaml
blob: 35abc8e876fa24ee4f8ebac38475f6d40f026def (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
- 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 }}"

- block:
  - 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
  tags: connection_network_cli

  always:
  - name: Clean up test state
    include: "{{ role_path }}/tests/cli/cleanup.yml ansible_connection=network_cli"