diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2024-03-23 08:52:20 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2024-03-23 08:52:20 +0000 |
commit | 1d6c7efb9374d0a3173fe1cd24481783ba7a24dc (patch) | |
tree | e58ab388e86c2a184186d1907e5434154b256199 /xtesting/core/pytest.py | |
parent | bff600d399c8f39ca2bc0bcd64684a989f16a553 (diff) | |
parent | 9f598142c47cc6771a6b880e5e7d349633f0201f (diff) |
Merge "Enforce self.details as a collection" into stable/2023.1
Diffstat (limited to 'xtesting/core/pytest.py')
-rw-r--r-- | xtesting/core/pytest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtesting/core/pytest.py b/xtesting/core/pytest.py index 1dadf300..a47ab551 100644 --- a/xtesting/core/pytest.py +++ b/xtesting/core/pytest.py @@ -90,7 +90,7 @@ class Pytest(testcase.TestCase): self.__logger.info( "\n\n %s \n", output.getvalue().splitlines()[-1].replace('=', '')) - self.details = Pytest.tests + self.details["tests"] = Pytest.tests if Pytest.passed + Pytest.failed: self.result = Pytest.passed / ( Pytest.passed + Pytest.failed) * 100 |