mirror of https://github.com/ansible/ansible.git
Restore nuage_vspk integration tests.
parent
75283983f6
commit
1c7417cba7
@ -1,18 +1,19 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
- name: collect all test cases
|
- block:
|
||||||
find:
|
- name: collect all test cases
|
||||||
paths: "{{ role_path }}/tests"
|
find:
|
||||||
patterns: "{{ testcase }}.yaml"
|
paths: "{{ role_path }}/tests"
|
||||||
delegate_to: localhost
|
patterns: "{{ testcase }}.yaml"
|
||||||
register: test_cases
|
delegate_to: localhost
|
||||||
|
register: test_cases
|
||||||
|
|
||||||
- name: set test_items
|
- name: set test_items
|
||||||
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
||||||
|
|
||||||
- name: run test case
|
- name: run test case
|
||||||
include: "{{ test_case_to_run }}"
|
include: "{{ test_case_to_run }}"
|
||||||
with_items: "{{ test_items }}"
|
with_items: "{{ test_items }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
loop_var: test_case_to_run
|
loop_var: test_case_to_run
|
||||||
when: "ansible_python_version is version('2.7', '>=')"
|
when: "ansible_python_version is version('2.7', '>=')"
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
---
|
---
|
||||||
- name: Install Nuage VSD API Simulator
|
- block:
|
||||||
pip:
|
- name: Install Nuage VSD API Simulator
|
||||||
name: nuage-vsd-sim
|
pip:
|
||||||
|
name: nuage-vsd-sim
|
||||||
|
|
||||||
- name: Start Nuage VSD API Simulator
|
- name: Start Nuage VSD API Simulator
|
||||||
shell: "(cd /; nuage-vsd-sim >/dev/null 2>&1 &)"
|
shell: "(cd /; nuage-vsd-sim >/dev/null 2>&1 &)"
|
||||||
async: 10
|
async: 10
|
||||||
poll: 0
|
poll: 0
|
||||||
|
when: "ansible_python_version is version('2.7', '>=')"
|
||||||
|
Loading…
Reference in New Issue