(path: str)
| 29 | |
| 30 | |
| 31 | def read_file(path: str) -> str: |
| 32 | if not os.path.exists(path): |
| 33 | return "(no log written)\n" |
| 34 | with open(path, "r", encoding="utf-8") as handle: |
| 35 | return handle.read() |
| 36 | |
| 37 | |
| 38 | def report_section(summary: str, title: str, log_path: str) -> str: |
no test coverage detected