diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2016-07-15 11:23:15 +0200 |
---|---|---|
committer | Jose Lausuch <jose.lausuch@ericsson.com> | 2016-07-15 09:30:26 +0000 |
commit | e62b83442c5d0c53566a173fa1c0a530f067863e (patch) | |
tree | 59879ecc845ab10fa87c23116628d9c5ff92ab48 /ci | |
parent | 686e67c184950f0f245fe993e5b890a75503523b (diff) |
Disable ODL reporting to DB
The script odlreport2db.py fails and it needs more investigation
and troubleshooting. For now, we disable it to not block CI
JIRA:FUNCTEST-370
Change-Id: I9952fd7c5238212d6ed1437f1595fdadde9208f2
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/exec_test.sh | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/ci/exec_test.sh b/ci/exec_test.sh index 6a59390a..d9f169c1 100755 --- a/ci/exec_test.sh +++ b/ci/exec_test.sh @@ -87,15 +87,15 @@ function run_test(){ --odlip $odl_ip --odlwebport $odl_port # push results to the DB in case of CI - if [[ "$report" == "-r" && - -n "$DEPLOY_SCENARIO" && "$DEPLOY_SCENARIO" != "none" && - -n "$INSTALLER_TYPE" && "$INSTALLER_TYPE" != "none" ]] && - env | grep NODE_NAME > /dev/null; then - odl_logs="/home/opnfv/functest/results/odl/logs/2" - odl_path="${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/" - node_name=$(env | grep NODE_NAME | cut -f2 -d'=') - python ${odl_path}/odlreport2db.py -x ${odl_logs}/output.xml -i ${INSTALLER_TYPE} -p ${node_name} -s ${DEPLOY_SCENARIO} - fi + # if [[ "$report" == "-r" && + # -n "$DEPLOY_SCENARIO" && "$DEPLOY_SCENARIO" != "none" && + # -n "$INSTALLER_TYPE" && "$INSTALLER_TYPE" != "none" ]] && + # env | grep NODE_NAME > /dev/null; then + # odl_logs="/home/opnfv/functest/results/odl/" + # odl_path="${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/" + # node_name=$(env | grep NODE_NAME | cut -f2 -d'=') + # python ${odl_path}/odlreport2db.py -x ${odl_logs}/output.xml -i ${INSTALLER_TYPE} -p ${node_name} -s ${DEPLOY_SCENARIO} + # fi ;; "tempest_smoke_serial") python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/tempest/run_tempest.py \ |