Make integration tests run in parallel with async

pull/13606/head
James Cammarata 9 years ago
parent f2364ecf5f
commit 0c154e81f0

@ -10,11 +10,21 @@
register: results
- shell: ". hacking/env-setup && cd test/integration && make {{ run_integration_make_target }}"
async: 3600
poll: 0
register: async_test_results
sudo: true
environment:
TEST_FLAGS: "{{ run_integration_test_flags|default(lookup('env', 'TEST_FLAGS')) }}"
CREDENTIALS_FILE: "{{ run_integration_credentials_file|default(lookup('env', 'CREDENTIALS_FILE')) }}"
args:
chdir: "{{ results.stdout }}/ansible"
- name: poll for test results
async_status:
jid: "{{async_test_results.ansible_job_id}}"
register: test_results
until: test_results.finished
retries: 360
wait: 10
ignore_errors: true

Loading…
Cancel
Save