Return a Junit node containing custom properties, if any.
(self)
| 103 | self.attrs[str(name)] = bin_xml_escape(value) |
| 104 | |
| 105 | def make_properties_node(self) -> ET.Element | None: |
| 106 | class="st">""class="st">"Return a Junit node containing custom properties, if any."class="st">"" |
| 107 | if self.properties: |
| 108 | properties = ET.Element(class="st">"properties") |
| 109 | for name, value in self.properties: |
| 110 | properties.append(ET.Element(class="st">"property", name=name, value=value)) |
| 111 | return properties |
| 112 | return None |
| 113 | |
| 114 | def record_testreport(self, testreport: TestReport) -> None: |
| 115 | names = mangle_test_address(testreport.nodeid) |