()
| 24 | |
| 25 | |
| 26 | def test_isolated_pex_root(): |
| 27 | # type: () -> None |
| 28 | with temporary_pex_root() as (pex_root, _): |
| 29 | devendored_chroot = os.path.realpath(third_party.isolated().chroot_path) |
| 30 | assert pex_root == safe_commonpath([pex_root, devendored_chroot]) |
| 31 | |
| 32 | |
| 33 | def test_isolated_vendoring_constraints_omitted(): |
nothing calls this directly
no test coverage detected