(
self, terminalreporter: TerminalReporter, config: pytest.Config
)
| 683 | logfile.write(ET.tostring(testsuites, encoding="unicode")) |
| 684 | |
| 685 | def pytest_terminal_summary( |
| 686 | self, terminalreporter: TerminalReporter, config: pytest.Config |
| 687 | ) -> None: |
| 688 | if config.get_verbosity() >= 0: |
| 689 | terminalreporter.write_sep("-", f"generated xml file: {self.logfile}") |
| 690 | |
| 691 | def add_global_property(self, name: str, value: object) -> None: |
| 692 | __tracebackhide__ = True |
nothing calls this directly
no test coverage detected