(pythonpath_isolation_test)
| 462 | |
| 463 | |
| 464 | def test_pythonpath_isolation_inherit_path_prefer(pythonpath_isolation_test): |
| 465 | # type: (PythonpathIsolationTest) -> None |
| 466 | pythonpath_isolation_test.assert_isolation( |
| 467 | inherit_path="prefer", expected_output="foo.BAR=42 bar.FOO=137" |
| 468 | ) |
| 469 | |
| 470 | # True should map to 'prefer'. |
| 471 | pythonpath_isolation_test.assert_isolation( |
| 472 | inherit_path=True, expected_output="foo.BAR=42 bar.FOO=137" |
| 473 | ) |
| 474 | |
| 475 | |
| 476 | def test_pex_executable(): |
nothing calls this directly
no test coverage detected