(content: str, *, flush: bool = False)
| 3421 | tr: pytest.TerminalReporter = mock.create_autospec(pytest.TerminalReporter) |
| 3422 | |
| 3423 | def write_raw(content: str, *, flush: bool = False) -> None: |
| 3424 | mock_file.write(content) |
| 3425 | |
| 3426 | tr.write_raw = write_raw # type: ignore[method-assign] |
| 3427 | tr._progress_nodeids_reported = set() |