Rmove EOS vlan EAPI tests (#26818)

These are not working locally, removing for now will put it in place
when issues are fixed.
This commit is contained in:
Ricardo Carrillo Cruz 2017-07-14 19:16:00 +02:00 committed by GitHub
commit 028ce1da15
2 changed files with 0 additions and 101 deletions

View file

@ -1,33 +0,0 @@
---
- name: collect all eapi test cases
find:
paths: "{{ role_path }}/tests/eapi"
patterns: "{{ testcase }}.yaml"
register: test_cases
- name: set test_items
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}" #"
- name: enable eapi
eos_eapi:
enable_http: yes
enable_https: yes
enable_local_http: yes
enable_socket: yes
provider: "{{ cli }}"
# authorize: yes
- name: run test case
include: "{{ test_case_to_run }}"
with_items: "{{ test_items }}"
loop_control:
loop_var: test_case_to_run
- name: disable eapi
eos_eapi:
enable_http: no
enable_https: no
enable_local_http: no
enable_socket: no
provider: "{{ cli }}"
# authorize: yes