aboutsummaryrefslogtreecommitdiffstats
path: root/functest/core/pytest_suite_runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'functest/core/pytest_suite_runner.py')
-rw-r--r--functest/core/pytest_suite_runner.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/functest/core/pytest_suite_runner.py b/functest/core/pytest_suite_runner.py
index 5cbb3621b..bcbaa25d3 100644
--- a/functest/core/pytest_suite_runner.py
+++ b/functest/core/pytest_suite_runner.py
@@ -52,13 +52,13 @@ class PyTestSuiteRunner(testcase.TestCase):
# TestCase.EX_RUN_ERROR means that the test case was not run
# not that it was run but the result was FAIL
exit_code = testcase.TestCase.EX_OK
- if ((result.errors and len(result.errors) > 0)
- or (result.failures and len(result.failures) > 0)):
+ if ((result.errors and len(result.errors) > 0) or
+ (result.failures and len(result.failures) > 0)):
self.logger.info("%s FAILED", self.case_name)
- self.result = 'FAIL'
+ self.result = 0
else:
self.logger.info("%s OK", self.case_name)
- self.result = 'PASS'
+ self.result = 100
self.details = {}
return exit_code