ansible/test/integration/targets/nuage_vspk/tasks/main.yml
Sam Doran 911a2ec6d3 Make nuage_vspk test more reliable
- don't background the nuage-vsd-sim
- increase the asncy timeout
- use uri to actually query the simulator API to make sure it is ready for connections
2019-06-26 14:32:23 -07:00

19 lines
536 B
YAML

- block:
- name: run test case
include: "{{ test_case_to_run }}"
with_fileglob: tests/{{ testcase }}.yaml
loop_control:
loop_var: test_case_to_run
always:
- name: Get nuage-vsd-sim pid
shell: ps -A | grep '[n]'uage-vsd-sim | cut -d ' ' -f 1
register: vsim_pid
changed_when: no
ignore_errors: yes
- name: Stop-nuage-vsd-sim
command: kill {{ vsim_pid.stdout }}
changed_when: no
ignore_errors: yes
when: "ansible_python_version is version('2.7', '>=')"