(venv: str)
| 22 | |
| 23 | |
| 24 | def get_env_patch(venv: str) -> PatchesT: # pragma: win32 no cover |
| 25 | bin_path = os.path.join(venv, BUILD_DIR, BUILD_CONFIG) |
| 26 | return (('PATH', (bin_path, os.pathsep, Var('PATH'))),) |
| 27 | |
| 28 | |
| 29 | @contextlib.contextmanager # pragma: win32 no cover |