Martin Kopec 05c35eb793 Improve tempest-cleanup ansible role
The patch implements a new flag which will fail a job when any
resources were leaked - that can be used for verification that
tests are cleaning their resources after they are finished.

Change-Id: I212cdce9713c80491153b0bbdb313e75c1f96f1d
2020-11-03 21:47:14 +00:00

47 lines
1.3 KiB
YAML

- when: init_saved_state
block:
- name: Run tempest cleanup init-saved-state
become: yes
become_user: tempest
command: tox -evenv-tempest -- tempest cleanup --init-saved-state --debug
args:
chdir: "{{ devstack_base_dir }}/tempest"
- name: Cat saved_state.json
command: cat "{{ devstack_base_dir }}/tempest/saved_state.json"
- when: dry_run
block:
- import_tasks: dry_run.yaml
- name: Cat dry_run.json
command: cat "{{ devstack_base_dir }}/tempest/dry_run.json"
- when:
- not dry_run
- not init_saved_state
block:
- name: Run tempest cleanup
become: yes
become_user: tempest
command: tox -evenv-tempest -- tempest cleanup --debug
args:
chdir: "{{ devstack_base_dir }}/tempest"
- when:
- run_tempest_fail_if_leaked_resources
- not init_saved_state
block:
# let's run dry run again, if haven't already, to check no leftover
# resources were left behind after the cleanup in the previous task
- import_tasks: dry_run.yaml
when: not dry_run
- name: Fail if any resources are leaked
become: yes
become_user: tempest
shell: |
python3 roles/tempest-cleanup/tasks/dry_run_checker.py --file {{ devstack_base_dir }}/tempest/dry_run.json --is-empty
args:
chdir: "{{ devstack_base_dir }}/tempest"