Return the local Lib/test path matching a CPython test path.
(
cpython_test_path: pathlib.Path, lib_prefix: str
)
| 169 | |
| 170 | |
| 171 | def _get_local_test_path( |
| 172 | cpython_test_path: pathlib.Path, lib_prefix: str |
| 173 | ) -> pathlib.Path: |
| 174 | """Return the local Lib/test path matching a CPython test path.""" |
| 175 | return pathlib.Path(lib_prefix) / "test" / cpython_test_path.name |
| 176 | |
| 177 | |
| 178 | def is_test_tracked(test_name: str, cpython_prefix: str, lib_prefix: str) -> bool: |
no outgoing calls
no test coverage detected