summaryrefslogtreecommitdiff
path: root/test/integration/targets/eos_l2_interfaces/tasks/cli.yaml
diff options
context:
space:
mode:
authorPaul Belanger <pabelanger@redhat.com>2020-02-06 10:20:08 -0500
committerGitHub <noreply@github.com>2020-02-06 10:20:08 -0500
commitc3635532d3047ff944761005790d4be1111a8f72 (patch)
treee07a9ebea0a72747d5d2fbd31a8b54f2951c4ec9 /test/integration/targets/eos_l2_interfaces/tasks/cli.yaml
parent637eed5a5c3cff7e7d71faadc5de6e591e32d1d0 (diff)
downloadansible-c3635532d3047ff944761005790d4be1111a8f72.tar.gz
Revert "Allow httpapi for EOS resource modules (#66871)" (#67131)
This looks to be causing issues for our new ansible.netcommon collection. Revert for now, until we can properly address. This reverts commit 53c7f8cbdee3c798a6947b834d0640935155d85b.
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"