diff options
author | jose.lausuch <jose.lausuch@ericsson.com> | 2017-05-17 14:17:21 +0200 |
---|---|---|
committer | Jose Lausuch <jose.lausuch@ericsson.com> | 2017-05-17 12:59:37 +0000 |
commit | 57da7080488785813adcaff4e2410e2338dccf2a (patch) | |
tree | 3c05ddb9608295d8dbadd9c445cf7a5c7a9b2c85 /functest/core/pytest_suite_runner.py | |
parent | 0821c4204c7ca470818cfe1c83060fcd2f94e3d6 (diff) |
Update self.result value to INT
So far, the test cases are storing a string "PASS" "FAIL"
in the self.result variable.
The way the new framework works is with INT Values.
Change-Id: I45e8693327740faadd8254b21569adfb2cefa6c8
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
Diffstat (limited to 'functest/core/pytest_suite_runner.py')
-rw-r--r-- | functest/core/pytest_suite_runner.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/functest/core/pytest_suite_runner.py b/functest/core/pytest_suite_runner.py index 5cbb3621..bcbaa25d 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 |