MCPcopy
hub / github.com/pex-tool/pex / read_additional_sys_path

Function read_additional_sys_path

tests/integration/test_issue_1825.py:68–78  ·  view source on GitHub ↗
(
    pex,  # type: str
    *additional_args,  # type: str
    **additional_env  # type: Any
)

Source from the content-addressed store, hash-verified

66
67
68def read_additional_sys_path(
69 pex, # type: str
70 *additional_args, # type: str
71 **additional_env # type: Any
72):
73 # type: (...) -> List[str]
74
75 isolated_sys_path = execute_sys_path_dump_pex(pex)
76 return list(
77 execute_sys_path_dump_pex(pex, *additional_args, **additional_env) - isolated_sys_path
78 )
79
80
81def assert_inherited(

Callers 2

assert_inheritedFunction · 0.85

Calls 1

Tested by

no test coverage detected