Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove tox envdir configuration broken in tox 4
Our tox configuration tries to reuse tox environment directories, in order to (potentially) save time installing dependencies for different tasks. This worked in tox 3 but is broken in tox 4, and is explicitly discouraged by the tox developers, see https://tox.wiki/en/latest/upgrading.html#reuse-of-environments tox-dev/tox#2788 This behavior is observable when running tox here, as you'll see messages like this: unittest: recreate env because env type changed from {'name': 'validate-migrations', 'type': 'VirtualEnvRunner'} to {'name': 'unittest', 'type': 'VirtualEnvRunner'} unittest: remove tox env folder /Users/chosaka/Projects/consumerfinance.gov/.tox/unittest This commit removes our tox envDir directives.
- Loading branch information