aboutsummaryrefslogtreecommitdiffstats
path: root/xtesting/core
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2024-03-23 09:40:45 +0000
committerGerrit Code Review <gerrit@opnfv.org>2024-03-23 09:40:45 +0000
commit74ed73693f830a8e3a98790685a22adbd76acffa (patch)
tree3582d9e2acaed191c12c5ed690f995c3000f6171 /xtesting/core
parentb5bc627ce1b0ac68c04e89ff7f20b0fb5485c64f (diff)
parentf77b46e08e43bdc653f6c7f6e84c0ad13666f7e9 (diff)
Merge "Enforce self.details as a collection" into stable/yogastable/yoga
Diffstat (limited to 'xtesting/core')
-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