(root: Path, relative_path: str, src: str)
| 36 | |
| 37 | |
| 38 | def _write_source(root: Path, relative_path: str, src: str) -> Path: |
| 39 | path = root / relative_path |
| 40 | path.parent.mkdir(parents=True, exist_ok=True) |
| 41 | path.write_text(src, encoding="utf-8") |
| 42 | return path |
| 43 | |
| 44 | |
| 45 | EVENT_PROCESSOR_SRC = """ |
no outgoing calls
no test coverage detected