2017-10-03 15:06:33 +08:00
|
|
|
- hosts: primary
|
2019-12-27 18:10:58 +08:00
|
|
|
name: Clear test env
|
2017-10-03 15:06:33 +08:00
|
|
|
tasks:
|
2019-12-27 18:10:58 +08:00
|
|
|
- name: clear test env
|
|
|
|
shell:
|
|
|
|
cmd: |
|
|
|
|
/opt/stack/heat/heat_integrationtests/cleanup_test_env.sh
|
|
|
|
executable: /bin/bash
|
|
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
|
|
environment:
|
|
|
|
DEVSTACK_BASE_DIR: "{{ devstack_base_dir }}"
|
|
|
|
become: true
|
2017-10-03 15:06:33 +08:00
|
|
|
|
2019-12-27 18:10:58 +08:00
|
|
|
- hosts: tempest
|
|
|
|
become: true
|
|
|
|
roles:
|
|
|
|
- role: fetch-subunit-output
|
|
|
|
zuul_work_dir: '{{ devstack_base_dir }}/tempest'
|
|
|
|
- role: process-stackviz
|