-
If you try to run tox from multiple machines that mount the code repository on a shared folder you will fail, mainly because The only workaround I found is to use customize the name of Another approach that I was wondering about was a potential use of a system/user temp directory outside the code repository, something like In fact this approach is already used by pre-commit tool which keeps its virtualenvs inside |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
In a tox4 world, you can do it as:
|
Beta Was this translation helpful? Give feedback.
-
If I could defined something That is the kind of setting that is more of user-setting than a project-setting. Maybe this could also be implemented as a plugin, as you likely want to avoid bloating the core. |
Beta Was this translation helpful? Give feedback.
If I could defined something
TOX_WORKDIR=~/.cache/tox/{projectname}
it would be we awesome. Still, to fully work it needs some kind of expansion as I would never be able to convince 100+ repo-owners to customize their tox.ini files to cover for my corner use-case.That is the kind of setting that is more of user-setting than a project-setting.
Maybe this could also be implemented as a plugin, as you likely want to avoid bloating the core.