summaryrefslogtreecommitdiff
path: root/test/integration/targets/exos_command/tasks
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/exos_command/tasks')
-rw-r--r--test/integration/targets/exos_command/tasks/cli.yaml16
-rw-r--r--test/integration/targets/exos_command/tasks/httpapi.yaml16
-rw-r--r--test/integration/targets/exos_command/tasks/main.yaml3
3 files changed, 0 insertions, 35 deletions
diff --git a/test/integration/targets/exos_command/tasks/cli.yaml b/test/integration/targets/exos_command/tasks/cli.yaml
deleted file mode 100644
index 5068fbcf9b..0000000000
--- a/test/integration/targets/exos_command/tasks/cli.yaml
+++ /dev/null
@@ -1,16 +0,0 @@
----
-- name: collect all common test cases
- find:
- paths: "{{ role_path }}/tests/common"
- 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 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
diff --git a/test/integration/targets/exos_command/tasks/httpapi.yaml b/test/integration/targets/exos_command/tasks/httpapi.yaml
deleted file mode 100644
index 7435ff0f0c..0000000000
--- a/test/integration/targets/exos_command/tasks/httpapi.yaml
+++ /dev/null
@@ -1,16 +0,0 @@
----
-- name: collect all common test cases
- find:
- paths: "{{ role_path }}/tests/common"
- 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 cases (connection=network_cli)
- include: "{{ test_case_to_run }} ansible_connection=httpapi"
- with_items: "{{ test_items }}"
- loop_control:
- loop_var: test_case_to_run
diff --git a/test/integration/targets/exos_command/tasks/main.yaml b/test/integration/targets/exos_command/tasks/main.yaml
deleted file mode 100644
index 9dd8c08861..0000000000
--- a/test/integration/targets/exos_command/tasks/main.yaml
+++ /dev/null
@@ -1,3 +0,0 @@
----
-- {include: cli.yaml, tags: ['cli']}
-- {include: httpapi.yaml, tags: ['httpapi']}