Fixed missing ; from if statement in tempest_run

Change-Id: I150cdaa89dd00bbd93febe31f753f7cfee7a7e76
This commit is contained in:
Chandan Kumar 2018-10-31 19:47:18 +05:30
parent 7e6e614ff0
commit e913cb42f3
1 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@
- name: Execute tempest tests
shell: |
set -e
if [ -d {{ tempest_venv_bin }} ]
if [ -d {{ tempest_venv_bin }} ];
then
. {{ tempest_venv_bin }}/activate
fi
@ -40,7 +40,7 @@
# to be used by the OpenStack Health dashboard.
shell: |
set -e
if [ -d {{ tempest_venv_bin }} ]
if [ -d {{ tempest_venv_bin }} ];
then
. {{ tempest_venv_bin }}/activate
fi
@ -57,7 +57,7 @@
- name: Generate xml subunit results
shell: |
set -e
if [ -d {{ tempest_venv_bin }} ]
if [ -d {{ tempest_venv_bin }} ];
then
. {{ tempest_venv_bin }}/activate
fi
@ -74,7 +74,7 @@
- name: Generate html subunit results
shell: |
set -e
if [ -d {{ tempest_venv_bin }} ]
if [ -d {{ tempest_venv_bin }} ];
then
. {{ tempest_venv_bin }}/activate
fi