diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-08-16 14:50:38 +0200 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-08-17 11:04:18 +0200 |
commit | 97fc67c5b21b15e33647d8654810f4403cde6f7b (patch) | |
tree | a0ded89b9710bacec0673e284ff7183f40d43282 /ci | |
parent | 68eaeac3b2306a975dff258f52a2b33f427b7d6e (diff) |
Add reporting flag to push reuslts only from CI
JIRA: FUNCTEST-416
Change-Id: I1a5800be0dcf75573f44e6214b23917aadc1cbf7
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/exec_test.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ci/exec_test.sh b/ci/exec_test.sh index db9c7a07e..1acf7e01c 100755 --- a/ci/exec_test.sh +++ b/ci/exec_test.sh @@ -130,7 +130,7 @@ function run_test(){ sleep 10 # to let the instances terminate ;; "doctor") - python ${FUNCTEST_REPO_DIR}/testcases/features/doctor.py + python ${FUNCTEST_REPO_DIR}/testcases/features/doctor.py $report ;; "ovno") # suite under rewritting for colorado @@ -143,7 +143,7 @@ function run_test(){ python ${repos_dir}/securityscanning/security_scan.py --config ${repos_dir}/securityscanning/config.ini ;; "copper") - python ${FUNCTEST_REPO_DIR}/testcases/features/copper.py + python ${FUNCTEST_REPO_DIR}/testcases/features/copper.py $report ;; "moon") python ${repos_dir}/moon/tests/run_tests.py @@ -155,7 +155,7 @@ function run_test(){ -c ${FUNCTEST_REPO_DIR}/testcases/OpenStack/tempest/tempest_multisite.conf ;; "domino") - python ${FUNCTEST_REPO_DIR}/testcases/features/domino.py + python ${FUNCTEST_REPO_DIR}/testcases/features/domino.py $report ;; "odl-sfc") bash ${FUNCTEST_REPO_DIR}/testcases/features/sfc/server_presetup_CI.bash @@ -169,7 +169,7 @@ function run_test(){ exit $ret_val fi source ${FUNCTEST_REPO_DIR}/testcases/features/sfc/tackerc - python ${FUNCTEST_REPO_DIR}/testcases/features/sfc/sfc.py + python ${FUNCTEST_REPO_DIR}/testcases/features/sfc/sfc.py $report ;; "parser") python ${FUNCTEST_REPO_DIR}/testcases/vnf/vRNC/parser.py $report |