aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2024-03-23 08:52:04 +0000
committerGerrit Code Review <gerrit@opnfv.org>2024-03-23 08:52:04 +0000
commit7794bcc4e99bf9d7c4272ea1994437b82f2a8e4f (patch)
tree93c98cd6de0415bd620609c2649ec911fafb374a
parente690a6c21b4eb7c68c66cf4111ba9ffdaa802674 (diff)
parentd305bce1c6eb5c372539f1478bd5989101f5622f (diff)
Merge "Enforce self.details as a collection" into stable/zedstable/zed
-rw-r--r--xtesting/core/pytest.py2
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