(path: PurePath)
| 14 | is_posix_host = PurePath() == PurePosixPath() |
| 15 | |
| 16 | def realpath(path: PurePath) -> Path: |
| 17 | return Path(path).resolve() |
| 18 | |
| 19 | def nt_to_native(rootfs: str, cwd: str, path: str) -> str: |
| 20 | p = QlOsPath(rootfs, cwd, QL_OS.WINDOWS) |
no test coverage detected