diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-11-09 15:47:14 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-11-09 15:47:14 +0100 |
commit | 256e6b0a10d43e930ecd81078d9cbcd89ebb5a06 (patch) | |
tree | b24ee0ea004ef3f7b651957a5411a2c9f98763cc /xtesting/ci | |
parent | 384308c4a5af0a66ff9e78de17ace94ab7d1d51f (diff) |
Add links in testcase details
It allows finding easily reports thanks to DB.
Change-Id: Ib5c4400c186fd320ae87e7fd3d4404b65e996a82
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'xtesting/ci')
-rw-r--r-- | xtesting/ci/run_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xtesting/ci/run_tests.py b/xtesting/ci/run_tests.py index 71e8cfd4..0f43210c 100644 --- a/xtesting/ci/run_tests.py +++ b/xtesting/ci/run_tests.py @@ -172,14 +172,14 @@ class Runner(): test_case.run(**kwargs) except KeyError: test_case.run() - if self.report_flag: - test_case.push_to_db() result = test_case.is_successful() LOGGER.info("Test result:\n\n%s\n", test_case) if self.clean_flag: test_case.clean() if self.push_flag: test_case.publish_artifacts() + if self.report_flag: + test_case.push_to_db() except ImportError: LOGGER.exception("Cannot import module %s", run_dict['module']) except AttributeError: |