(content: str)
| 220 | |
| 221 | |
| 222 | def _save_report(content: str) -> Path: |
| 223 | reports_dir = Path("reports") |
| 224 | reports_dir.mkdir(exist_ok=True) |
| 225 | timestamp = datetime.now().strftime("%Y-%m-%d_%H-%M-%S") |
| 226 | path = reports_dir / f"{timestamp}_report.md" |
| 227 | path.write_text(content, encoding="utf-8") |
| 228 | return path |
| 229 | |
| 230 | |
| 231 | # --------------------------------------------------------------------------- |
no outgoing calls
no test coverage detected