(test_name: str)
| 30 | def read(path: Path) -> str: |
| 31 | return path.read_text(encoding="utf-8") |
| 32 | |
| 33 | |
| 34 | def write_failure(path: Path, proc) -> None: |
| 35 | path.write_text( |
| 36 | f"STDOUT:\n{proc.stdout}\n\nSTDERR:\n{proc.stderr}", |
no outgoing calls
no test coverage detected