(
self, pytester: Pytester, run_and_parse: RunAndParse, xunit_family: str
)
| 197 | |
| 198 | @parametrize_families |
| 199 | def test_hostname_in_xml( |
| 200 | self, pytester: Pytester, run_and_parse: RunAndParse, xunit_family: str |
| 201 | ) -> None: |
| 202 | pytester.makepyfile( |
| 203 | """ |
| 204 | def test_pass(): |
| 205 | pass |
| 206 | """ |
| 207 | ) |
| 208 | result, dom = run_and_parse(family=xunit_family) |
| 209 | node = dom.find_first_by_tag("testsuite") |
| 210 | node.assert_attr(hostname=platform.node()) |
| 211 | |
| 212 | @parametrize_families |
| 213 | def test_timestamp_in_xml( |
nothing calls this directly
no test coverage detected