mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
703eea3da2
* eos_logging implementation module Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * eos_logging integration test Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * modify aggregate args logic * changed collection to aggregate * add blankline * handle size value outside method
28 lines
598 B
YAML
28 lines
598 B
YAML
---
|
|
- 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:
|
|
http: yes
|
|
https: yes
|
|
local_http: no
|
|
enable_socket: yes
|
|
provider: "{{ cli }}"
|
|
|
|
- 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:
|
|
state: stopped
|
|
provider: "{{ cli }}"
|