aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2024-03-23 08:52:20 +0000
committerGerrit Code Review <gerrit@opnfv.org>2024-03-23 08:52:20 +0000
commit1d6c7efb9374d0a3173fe1cd24481783ba7a24dc (patch)
treee58ab388e86c2a184186d1907e5434154b256199
parentbff600d399c8f39ca2bc0bcd64684a989f16a553 (diff)
parent9f598142c47cc6771a6b880e5e7d349633f0201f (diff)
Merge "Enforce self.details as a collection" into stable/2023.1stable/2023.1
-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