Restore nuage_vspk integration tests.

pull/39814/head
Matt Clay 6 years ago
parent 75283983f6
commit 1c7417cba7

@ -1,3 +1,2 @@
posix/ci/group1
skip/python3
disabled

@ -1,18 +1,19 @@
---
- name: collect all test cases
find:
paths: "{{ role_path }}/tests"
patterns: "{{ testcase }}.yaml"
delegate_to: localhost
register: test_cases
- block:
- name: collect all test cases
find:
paths: "{{ role_path }}/tests"
patterns: "{{ testcase }}.yaml"
delegate_to: localhost
register: test_cases
- name: set test_items
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
- 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
- name: run test case
include: "{{ test_case_to_run }}"
with_items: "{{ test_items }}"
loop_control:
loop_var: test_case_to_run
when: "ansible_python_version is version('2.7', '>=')"

@ -1,9 +1,11 @@
---
- name: Install Nuage VSD API Simulator
pip:
name: nuage-vsd-sim
- block:
- name: Install Nuage VSD API Simulator
pip:
name: nuage-vsd-sim
- name: Start Nuage VSD API Simulator
shell: "(cd /; nuage-vsd-sim >/dev/null 2>&1 &)"
async: 10
poll: 0
- name: Start Nuage VSD API Simulator
shell: "(cd /; nuage-vsd-sim >/dev/null 2>&1 &)"
async: 10
poll: 0
when: "ansible_python_version is version('2.7', '>=')"

Loading…
Cancel
Save