aboutsummaryrefslogtreecommitdiffstats
path: root/functest/core
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2017-12-20 19:19:20 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2017-12-20 19:23:16 +0100
commitf4e49ae7753901336814ccbd26003ac229440f5b (patch)
tree1447ceb7af149a87b6d43d8a51750cf3d9d89a09 /functest/core
parented9c3b0b4aaa751e298aed6c52f56d2a0319c70d (diff)
Remove logger_test_results
It was only called in Feature which the result is already printed (see __str__()). It also eases moving Feature to xtesting as it breaks the link to functest_utils. Change-Id: Ib72d651dc7d89598704ff4d52d8b1ecb2bdade5b Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest/core')
-rw-r--r--functest/core/feature.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/functest/core/feature.py b/functest/core/feature.py
index 010ff4bc9..2dc3ccbd6 100644
--- a/functest/core/feature.py
+++ b/functest/core/feature.py
@@ -98,9 +98,6 @@ class Feature(base.TestCase):
if self.execute(**kwargs) == 0:
exit_code = base.TestCase.EX_OK
self.result = 100
- ft_utils.logger_test_results(
- self.project_name, self.case_name,
- self.result, self.details)
except Exception: # pylint: disable=broad-except
self.__logger.exception("%s FAILED", self.project_name)
self.__logger.info("Test result is stored in '%s'", self.result_file)