We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89f9f76 commit 4ee9c74Copy full SHA for 4ee9c74
src/tox_uv/_venv.py
@@ -167,7 +167,7 @@ def env_site_package_dir(self) -> Path:
167
168
@cached_property
169
def _py_info(self) -> PythonInfo: # pragma: win32 no cover
170
- if not (self._created or self.env_dir.exists()): # called during config, no environment setup
+ if not self._created and not self.env_python().exists(): # called during config, no environment setup
171
self.create_python_env()
172
self._paths = self.prepend_env_var_path()
173
with as_file(files("tox_uv") / "_venv_query.py") as filename:
0 commit comments