()
| 18 | |
| 19 | @contextmanager |
| 20 | def temporary_pex_root(): |
| 21 | # type: () -> Iterator[Tuple[str, Dict[str, str]]] |
| 22 | with temporary_dir() as pex_root, ENV.patch(PEX_ROOT=os.path.realpath(pex_root)) as env: |
| 23 | yield os.path.realpath(pex_root), env |
| 24 | |
| 25 | |
| 26 | def test_isolated_pex_root(): |
no test coverage detected