How to clear tox cache? #3213
-
I have an issue where tox caches on older version of a package and the tests fail because of that. The newer version has changed a function name. How do I clear the cache so it downloads the updated version? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
If |
Beta Was this translation helpful? Give feedback.
-
Using |
Beta Was this translation helpful? Give feedback.
tox -r <envname>
should help in that case. If not, you could simply delete the.tox
folder - there are only transient files in there, so this just rebuilds everything.If
tox -r
does not help, please report back, then we probably need to add some documentation.