mirror of https://github.com/ansible/ansible.git
[stable-2.7] Fix nuage_vspk integration test:
- Wait for API to be ready.
- Enumerate test cases on controller.
(cherry picked from commit 29de0619e8
)
Co-authored-by: Matt Clay <matt@mystile.com>
pull/58551/head
parent
b7f15c69b1
commit
1a2bafa510
@ -1,19 +1,9 @@
|
||||
---
|
||||
|
||||
- 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: run test case
|
||||
include: "{{ test_case_to_run }}"
|
||||
with_items: "{{ test_items }}"
|
||||
with_fileglob: "{{ role_path }}/tests/{{ testcase }}.yaml"
|
||||
loop_control:
|
||||
loop_var: test_case_to_run
|
||||
when: "ansible_python_version is version('2.7', '>=')"
|
||||
|
Loading…
Reference in New Issue