diff options
Diffstat (limited to 'tests/ci')
-rw-r--r-- | tests/ci/run_ci.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/ci/run_ci.sh b/tests/ci/run_ci.sh index 5c62644b..02dfca09 100644 --- a/tests/ci/run_ci.sh +++ b/tests/ci/run_ci.sh @@ -76,7 +76,11 @@ cd /home/opnfv/workspace/ qtip setup eval `ssh-agent` -qtip run --extra-vars "testapi_url=$testapi_url" +if [[ -z $testapi_url ]];then + qtip run +else + qtip run --extra-vars "testapi_url=$testapi_url" +fi qtip teardown # Remove ssh public key from installer |