aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2014-09-24 10:37:47 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2014-09-24 10:37:47 -0500
commit7dc46f0dd4275e5ad33792ed8b648087b4d0af42 (patch)
tree99c8d72c681f1bcfc1c65cc2225aeae8e6e06e53
parent0c78f41ac7a3c29c10530e6dc37be6954bfbc2e8 (diff)
downloadmediagoblin-7dc46f0dd4275e5ad33792ed8b648087b4d0af42.tar.lz
mediagoblin-7dc46f0dd4275e5ad33792ed8b648087b4d0af42.tar.xz
mediagoblin-7dc46f0dd4275e5ad33792ed8b648087b4d0af42.zip
Avoid doing python setup.py sdist, use setup.py develop instead for tox
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!
-rw-r--r--tox.ini3
1 files changed, 2 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index f0b135f2..6bbbe78b 100644
--- 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 =