IIUC src/pyscaffold/templates/tox_ini.template causes tox -e flake8 to do an install even though flake8 is linting the source files directly. If I'm correct, this should be fixed by adding skip_install = True to the [testenv:flake8] section.
Also note that this should work even if [testenv] has usedevelop = True: tox-dev/tox#572
See also #161.
IIUC
src/pyscaffold/templates/tox_ini.templatecausestox -e flake8to do an install even though flake8 is linting the source files directly. If I'm correct, this should be fixed by addingskip_install = Trueto the[testenv:flake8]section.Also note that this should work even if
[testenv]hasusedevelop = True: tox-dev/tox#572See also #161.