(path: Path, content: str, overwrite: bool)
| 433 | |
| 434 | |
| 435 | def _write_text_file(path: Path, content: str, overwrite: bool) -> None: |
| 436 | if path.exists() and not overwrite: |
| 437 | return |
| 438 | path.write_text(content, encoding="utf-8") |
| 439 | |
| 440 | |
| 441 | def _docker_available() -> bool: |
no test coverage detected