From 211aca9d1361bb8f4b8b39695754a3132fb3b0c5 Mon Sep 17 00:00:00 2001 From: Pavel Cisar Date: Wed, 9 Nov 2022 16:01:03 +0100 Subject: [PATCH] Extend XML with title, description and notes --- firebird/qa/plugin.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/firebird/qa/plugin.py b/firebird/qa/plugin.py index d51e44c4..abe2c29f 100644 --- a/firebird/qa/plugin.py +++ b/firebird/qa/plugin.py @@ -482,6 +482,9 @@ def pytest_collection_modifyitems(session, config, items): item.user_properties.append(("id", item._qa_id_)) item.user_properties.append(("fbtest", item._qa_pytest_)) item.user_properties.append(("issue", item._qa_issue_)) + item.user_properties.append(("title", item._qa_title_)) + item.user_properties.append(("description", item._qa_description_)) + item.user_properties.append(("notes", item._qa_notes_)) def substitute_macros(text: str, macros: Dict[str, str]): """Helper function to substitute `$(name)` macros in text.