Avoid doing python setup.py sdist, use setup.py develop instead for tox
authorChristopher Allan Webber <cwebber@dustycloud.org>
Wed, 24 Sep 2014 15:37:47 +0000 (10:37 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Wed, 24 Sep 2014 15:37:47 +0000 (10:37 -0500)
Berker had this previously, but for some reason it wasn't
working... here's why!  usedevelop needs to be in the testenv!  Aha!

This commit sponsored by Gian-Maria Daffré!  Thank you!

tox.ini

diff --git a/tox.ini b/tox.ini
index f0b135f25512818cff672725e15d5d095e7d82a0..6bbbe78b06f9d69b629031405fd0b74200888708 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,9 +1,10 @@
 [tox]
 envlist = py27, py33
-usedevelop = True
+skipsdist = True
 sitepackages = False
 
 [testenv]
+usedevelop = True
 whitelist_externals = sh
 commands = py.test ./mediagoblin/tests --boxed
 deps =