(
self, pytester: Pytester, run_and_parse: RunAndParse, xunit_family: str
)
| 262 | |
| 263 | @parametrize_families |
| 264 | def test_hostname_in_xml( |
| 265 | self, pytester: Pytester, run_and_parse: RunAndParse, xunit_family: str |
| 266 | ) -> None: |
| 267 | pytester.makepyfile( |
| 268 | """ |
| 269 | def test_pass(): |
| 270 | pass |
| 271 | """ |
| 272 | ) |
| 273 | _result, dom = run_and_parse(family=xunit_family) |
| 274 | node = dom.get_first_by_tag("testsuite") |
| 275 | node.assert_attr(hostname=platform.node()) |
| 276 | |
| 277 | @parametrize_families |
| 278 | def test_timestamp_in_xml( |
nothing calls this directly
no test coverage detected