(paths, *, pid: int, created_at: str)
| 13 | |
| 14 | |
| 15 | def _write_lock(paths, *, pid: int, created_at: str) -> None: |
| 16 | lock_path = compiler_lock_path(paths) |
| 17 | lock_path.write_text(json.dumps({"created_at": created_at, "pid": pid}), encoding="utf-8") |
| 18 | |
| 19 | |
| 20 | def test_lock_status_reports_unlocked_when_no_file(tmp_path): |
no test coverage detected