diff options
author | 2024-03-23 08:52:04 +0000 | |
---|---|---|
committer | 2024-03-23 08:52:04 +0000 | |
commit | 7794bcc4e99bf9d7c4272ea1994437b82f2a8e4f (patch) | |
tree | 93c98cd6de0415bd620609c2649ec911fafb374a /xtesting/core | |
parent | e690a6c21b4eb7c68c66cf4111ba9ffdaa802674 (diff) | |
parent | d305bce1c6eb5c372539f1478bd5989101f5622f (diff) |
Merge "Enforce self.details as a collection" into stable/zed
Diffstat (limited to 'xtesting/core')
-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 |