aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2024-03-23 08:44:15 +0000
committerGerrit Code Review <gerrit@opnfv.org>2024-03-23 08:44:15 +0000
commita1ba6fb90620f04ef49f5d29d5ce0e2d812e37b2 (patch)
tree5aa0277b6545962b0aaadb47cd459ff9c2eaad9e
parent0085fc85caaefc0894a43f4a93574a72c002a880 (diff)
parentd33e1ce346faeedf4a4ce166feca871d2066a0e4 (diff)
Merge "Enforce self.details as a collection"HEADmaster
-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