ca7a4f4ff4
The show up in openstack-health, we need to publish the subunit file. The file is written by the subunit files, so only publish it. Change-Id: Ia2a4060c7e6ae3a5f9b8a8e8540c1d2c331850b1
14 lines
345 B
YAML
14 lines
345 B
YAML
- name: Register testrepository.subunit file
|
|
stat:
|
|
path: "{{ zuul_work_dir }}/testrepository.subunit.gz"
|
|
register: subunit
|
|
|
|
- name: Collect test-results
|
|
synchronize:
|
|
dest: "{{ zuul.executor.log_root }}"
|
|
mode: pull
|
|
src: "{{ zuul_work_dir }}/testrepository.subunit.gz"
|
|
verify_host: true
|
|
when:
|
|
- subunit.stat.exists
|