IIUC src/pyscaffold/templates/tox_ini.template causes tox to do an sdist install even though the tests are unlikely to need it. This can slow testing down a lot. If I'm correct, this should be fixed by adding usedevelop = True to the [testenv] section:
http://tox.readthedocs.io/en/latest/example/general.html#avoiding-expensive-sdist
See also #160.
IIUC
src/pyscaffold/templates/tox_ini.templatecauses tox to do an sdist install even though the tests are unlikely to need it. This can slow testing down a lot. If I'm correct, this should be fixed by addingusedevelop = Trueto the[testenv]section:http://tox.readthedocs.io/en/latest/example/general.html#avoiding-expensive-sdist
See also #160.