summaryrefslogtreecommitdiff
path: root/test/integration/targets/eos_l2_interfaces/tasks/cli.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/eos_l2_interfaces/tasks/cli.yaml')
-rw-r--r--test/integration/targets/eos_l2_interfaces/tasks/cli.yaml22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/integration/targets/eos_l2_interfaces/tasks/cli.yaml b/test/integration/targets/eos_l2_interfaces/tasks/cli.yaml
deleted file mode 100644
index 92c7271ce9..0000000000
--- a/test/integration/targets/eos_l2_interfaces/tasks/cli.yaml
+++ /dev/null
@@ -1,22 +0,0 @@
----
-- name: collect all cli test cases
- find:
- paths: "{{ role_path }}/tests/common"
- 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/common/cleanup.yml ansible_connection=network_cli"