(inherit_path)
| 350 | class PythonpathIsolationTest(object): |
| 351 | @staticmethod |
| 352 | def pex_info(inherit_path): |
| 353 | # type: (Union[str, bool]) -> PexInfo |
| 354 | return PexInfo.from_json(json.dumps({"inherit_path": inherit_path})) |
| 355 | |
| 356 | pythonpath = attr.ib() # type: str |
| 357 | dists = attr.ib() # type: Iterable[Distribution] |
no test coverage detected