387a23c3d1
* New ansible module netconf_rpc * add integration test for module netconf_rpc * pep8/meta-data corrections * usage of jxmlease for all XML processing separation of attributes "rpc" and "content" * removed unused imports improved error handling * fixed pep8 * usage of ast.literal_eval instead of eval added description to SROS integration test for cases commented out
16 lines
460 B
YAML
16 lines
460 B
YAML
---
|
|
- name: collect all netconf test cases
|
|
find:
|
|
paths: "{{ role_path }}/tests/sros"
|
|
patterns: "{{ testcase }}.yaml"
|
|
register: test_cases
|
|
connection: local
|
|
|
|
- name: set test_items
|
|
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
|
|
|
- name: run test case (connection=netconf)
|
|
include: "{{ test_case_to_run }} ansible_connection=netconf"
|
|
with_items: "{{ test_items }}"
|
|
loop_control:
|
|
loop_var: test_case_to_run
|