Build a path under prefix/Lib/.
(prefix: str, *parts: str)
| 171 | |
| 172 | |
| 173 | def construct_lib_path(prefix: str, *parts: str) -> pathlib.Path: |
| 174 | """Build a path under prefix/Lib/.""" |
| 175 | return pathlib.Path(prefix) / "Lib" / pathlib.Path(*parts) |
| 176 | |
| 177 | |
| 178 | def resolve_test_path( |
no outgoing calls
no test coverage detected