()
| 61 | |
| 62 | |
| 63 | def _effective_env() -> dict[str, str]: |
| 64 | env = os.environ.copy() |
| 65 | for key, value in LOCAL_ENV.items(): |
| 66 | if key == "NGS_TOOL_PATH_PREPEND": |
| 67 | continue |
| 68 | env.setdefault(key, value) |
| 69 | env["PATH"] = _effective_path() |
| 70 | return env |
| 71 | |
| 72 | |
| 73 | _apply_local_env() |
no test coverage detected