You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When first creating a virtual env, Tox create a file called .tox-config1 with ,among other things, list the dependencies used ( see here )
When running tox again, he check this file ( see here ) and the current list of depencies, and if there is a mismatch, Tox reinstall the virtual env.
Now the issue is that tox-conda remove the conda dependencies ( see here ) before running the pip install (which is ok), but doesn't re-inject them after the installations.
So when Tox write the config file, he doesn't have them, but when run a second time, they are present => config is different, env is rebuilt.
The text was updated successfully, but these errors were encountered:
Tox version : 3.13.2
tox-conda : 0.3.0
When first creating a virtual env, Tox create a file called .tox-config1 with ,among other things, list the dependencies used ( see here )
When running tox again, he check this file ( see here ) and the current list of depencies, and if there is a mismatch, Tox reinstall the virtual env.
Now the issue is that tox-conda remove the conda dependencies ( see here ) before running the pip install (which is ok), but doesn't re-inject them after the installations.
So when Tox write the config file, he doesn't have them, but when run a second time, they are present => config is different, env is rebuilt.
The text was updated successfully, but these errors were encountered: