diff options
author | 2024-03-23 09:40:45 +0000 | |
---|---|---|
committer | 2024-03-23 09:40:45 +0000 | |
commit | 74ed73693f830a8e3a98790685a22adbd76acffa (patch) | |
tree | 3582d9e2acaed191c12c5ed690f995c3000f6171 /xtesting | |
parent | b5bc627ce1b0ac68c04e89ff7f20b0fb5485c64f (diff) | |
parent | f77b46e08e43bdc653f6c7f6e84c0ad13666f7e9 (diff) |
Merge "Enforce self.details as a collection" into stable/yogastable/yoga
Diffstat (limited to 'xtesting')
-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 |