Add junos integration test (#24404)

This commit is contained in:
Ganesh Nalawade 2017-05-09 18:41:48 +05:30 committed by GitHub
commit 5b3ea6562b
25 changed files with 628 additions and 3 deletions

View file

@ -0,0 +1,15 @@
---
- name: collect netconf_json test cases with json encoding
find:
paths: "{{ role_path }}/tests/netconf_json"
patterns: "{{ testcase }}.yaml"
register: test_cases
- name: set test_items
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
- name: run test case
include: "{{ test_case_to_run }}"
with_items: "{{ test_items }}"
loop_control:
loop_var: test_case_to_run