Host directory mounted as ``/workspace`` in the sandbox container.
()
| 29 | |
| 30 | |
| 31 | def host_workspace() -> Path: |
| 32 | """Host directory mounted as ``/workspace`` in the sandbox container.""" |
| 33 | env = os.environ.get("HOST_WORKSPACE") |
| 34 | return Path(env).resolve() if env else PROJECT_ROOT / "workspace" |
| 35 | |
| 36 | |
| 37 | def workspace_persistent() -> Path: |
no test coverage detected