From ee21af78fbfc93e888acda121f08d2b216dd0159 Mon Sep 17 00:00:00 2001 From: "wu.zhihui" Date: Wed, 21 Dec 2016 09:49:19 +0800 Subject: write test results to a local file Write test result to a file or push it to DB depends on the value format of test_db_url which is defined in config_functest.yaml. Meanwhile, test_db_url can be set by os envrion value "RESULT_STORE". If test_db_url is a url, e.g. http:// or https://, then push result to DB. If test_db_url is a file location, e.g. file:///, then write results to a file with json data. One result record, one line. JIRA: FUNCTEST-657 Change-Id: I579087cd2c24d61a79142b5d67003fb486b6c723 Signed-off-by: wu.zhihui --- functest/ci/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'functest/ci/run_tests.py') diff --git a/functest/ci/run_tests.py b/functest/ci/run_tests.py index 35345fee..40d71db9 100755 --- a/functest/ci/run_tests.py +++ b/functest/ci/run_tests.py @@ -146,7 +146,7 @@ def run_test(test, tier_name): result = test_case.run() if result == testcase_base.TestcaseBase.EX_OK: if GlobalVariables.REPORT_FLAG: - test_case.push_to_db() + test_case.publish_report() result = test_case.check_criteria() except ImportError: logger.exception("Cannot import module {}".format( -- cgit 1.2.3-korg