Check if OpenStack credentials are fetched before running Functest
[releng.git] / jjb / functest / functest.yml
index e6729ea..9e3ff51 100644 (file)
             mkdir -p $HOME/functest/
 
             # source openstack vars
+            if [ ! -f $HOME/opnfv-openrc.sh ]; then
+                echo "Credentials file not found in "$HOME/opnfv-openrc.sh
+                exit 1
+            fi
+            echo "Sourcing the OpenStack credentials in"$HOME/opnfv-openrc.sh
             source $HOME/opnfv-openrc.sh
 
             # WORKSPACE is the root of the functest repo
             echo "Functest: prepare Functest environment"
             python $WORKSPACE/testcases/config_functest.py --debug $WORKSPACE/ start
             if [ $? != 0 ]; then
+                echo "Error when configuring Functest environment"
                 exit 1
             fi