(pythonpath_isolation_test)
| 444 | |
| 445 | |
| 446 | def test_pythonpath_isolation_inherit_path_false(pythonpath_isolation_test): |
| 447 | # type: (PythonpathIsolationTest) -> None |
| 448 | pythonpath_isolation_test.assert_isolation( |
| 449 | inherit_path="false", expected_output="foo.BAR=137 bar.FOO=None" |
| 450 | ) |
| 451 | # False should map to 'false'. |
| 452 | pythonpath_isolation_test.assert_isolation( |
| 453 | inherit_path=False, expected_output="foo.BAR=137 bar.FOO=None" |
| 454 | ) |
| 455 | |
| 456 | |
| 457 | def test_pythonpath_isolation_inherit_path_fallback(pythonpath_isolation_test): |
nothing calls this directly
no test coverage detected