File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 77 cmd : python3 Tests/scs-test-runner.py --config Tests/config.toml --debug cleanup --preset {{ preset }}
88 chdir : " {{ ansible_user_dir }}/{{ zuul.project.src_dir }}"
99 changed_when : true
10- when : do_cleanup
10+ when : do_cleanup | bool
1111
1212 - name : Unprovision clusters
1313 ansible.builtin.command :
1414 cmd : python3 Tests/scs-test-runner.py --config Tests/config.toml --debug unprovision --preset {{ preset }}
1515 chdir : " {{ ansible_user_dir }}/{{ zuul.project.src_dir }}"
1616 changed_when : true
17- when : do_provision
17+ when : do_provision | bool
Original file line number Diff line number Diff line change 99 # ansible.builtin.pip:
1010 # chdir: "{{ ansible_user_dir }}/{{ zuul.project.src_dir }}"
1111 # requirements: "Tests/iaas/requirements.txt"
12- # when: iaas
12+ # when: iaas | bool
1313
1414 - name : Install kaas dependencies
1515 ansible.builtin.pip :
1616 chdir : " {{ ansible_user_dir }}/{{ zuul.project.src_dir }}"
1717 requirements : " Tests/kaas/requirements.txt"
18- when : kaas
18+ when : kaas | bool
1919
2020 - name : Create cloud config dir
2121 ansible.builtin.file :
7070 cmd : python3 Tests/scs-test-runner.py --config Tests/config.toml --debug cleanup --preset {{ preset }}
7171 chdir : " {{ ansible_user_dir }}/{{ zuul.project.src_dir }}"
7272 changed_when : true
73- when : do_cleanup
73+ when : do_cleanup | bool
7474
7575 - name : Provision necessary clusters
7676 ansible.builtin.command :
7777 cmd : python3 Tests/scs-test-runner.py --config Tests/config.toml --debug provision --preset {{ preset }}
7878 chdir : " {{ ansible_user_dir }}/{{ zuul.project.src_dir }}"
7979 changed_when : true
80- when : do_provision
80+ when : do_provision | bool
You can’t perform that action at this time.
0 commit comments