Restore nuage_vspk integration tests.
This commit is contained in:
parent
75283983f6
commit
1c7417cba7
3 changed files with 23 additions and 21 deletions
|
@ -1,3 +1,2 @@
|
||||||
posix/ci/group1
|
posix/ci/group1
|
||||||
skip/python3
|
skip/python3
|
||||||
disabled
|
|
||||||
|
|
|
@ -1,16 +1,17 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
- name: collect all test cases
|
- block:
|
||||||
|
- name: collect all test cases
|
||||||
find:
|
find:
|
||||||
paths: "{{ role_path }}/tests"
|
paths: "{{ role_path }}/tests"
|
||||||
patterns: "{{ testcase }}.yaml"
|
patterns: "{{ testcase }}.yaml"
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
register: test_cases
|
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:
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
---
|
---
|
||||||
- name: Install Nuage VSD API Simulator
|
- block:
|
||||||
|
- name: Install Nuage VSD API Simulator
|
||||||
pip:
|
pip:
|
||||||
name: nuage-vsd-sim
|
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 a new issue