(prefix: Prefix, version: str)
| 28 | |
| 29 | @contextlib.contextmanager # pragma: win32 no cover |
| 30 | def in_env(prefix: Prefix, version: str) -> Generator[None]: |
| 31 | envdir = lang_base.environment_dir(prefix, ENVIRONMENT_DIR, version) |
| 32 | with envcontext(get_env_patch(envdir)): |
| 33 | yield |
| 34 | |
| 35 | |
| 36 | def install_environment( |
nothing calls this directly
no test coverage detected