Setup a virtual python environment.
(self)
| 328 | raise NotImplementedError |
| 329 | |
| 330 | def _setup_env(self) -> None: |
| 331 | """Setup a virtual python environment.""" |
| 332 | super()._setup_env() |
| 333 | self.ensure_python_env() |
| 334 | self._paths = self.prepend_env_var_path() # now that the environment exist we can add them to the path |
| 335 | |
| 336 | def ensure_python_env(self) -> None: |
| 337 | conf = self.python_cache() |
nothing calls this directly
no test coverage detected