(path: pathlib.Path, message: str)
| 86 | |
| 87 | |
| 88 | def append_log(path: pathlib.Path, message: str) -> None: |
| 89 | with path.open("a", encoding="utf-8", newline="\n") as stream: |
| 90 | stream.write(message) |
| 91 | stream.write("\n") |
| 92 | |
| 93 | |
| 94 | def start_suite( |
no outgoing calls
no test coverage detected