diff options
author | zhihui wu <wu.zhihui1@zte.com.cn> | 2017-07-13 07:53:56 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-07-13 07:53:56 +0000 |
commit | 77828bdd6821c8c8eb0ffe57cf423563e06853f7 (patch) | |
tree | 422eb1b9815094b82846b754722ea6403da9d567 /tests/ci/run_ci.sh | |
parent | 944cf2c05128ef7631684d5c707104033a8e998a (diff) | |
parent | a669101deb6226fa6b2f288ff72bc43e1fa726a2 (diff) |
Merge "add a handling process when testapi_url is None"
Diffstat (limited to 'tests/ci/run_ci.sh')
-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 |