aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2024-03-23 09:00:00 +0000
committerGerrit Code Review <gerrit@opnfv.org>2024-03-23 09:00:00 +0000
commit93620a5db1bb5f0b71f8c49603ab04a457921060 (patch)
tree92de1f22132642b98efd031308247ce93523b497
parent9c4b48ae1620e85e090ab176c81cd33e6efc4af0 (diff)
parent5e8fc783d9e3efeca9c23a955801c0ac634b37f1 (diff)
Merge "Enforce self.details as a collection" into stable/2023.2stable/2023.2
-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