Host-only persistent store for logs, checkpoints, and outputs.
()
| 35 | |
| 36 | |
| 37 | def workspace_persistent() -> Path: |
| 38 | """Host-only persistent store for logs, checkpoints, and outputs.""" |
| 39 | env = os.environ.get("WORKSPACE_PERSISTENT") |
| 40 | return Path(env).resolve() if env else PROJECT_ROOT / "workspace_persistent" |
| 41 | |
| 42 | |
| 43 | def outputs_root() -> Path: |
no test coverage detected