We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1eef9c commit a3f9411Copy full SHA for a3f9411
tmt/steps/report/reportportal.py
@@ -618,7 +618,8 @@ def execute_rp_import(self) -> None:
618
if not test_name:
619
test_name = test.name
620
if test.contact:
621
- item_attributes.append({"key": "contact", "value": test.contact[0]})
+ item_attributes += [
622
+ {'key': 'contact', 'value': contact} for contact in test.contact]
623
if test.summary:
624
test_description = test.summary
625
if test.web_link():
0 commit comments