diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2014-09-24 10:37:47 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2014-09-24 10:37:47 -0500 |
commit | 7dc46f0dd4275e5ad33792ed8b648087b4d0af42 (patch) | |
tree | 99c8d72c681f1bcfc1c65cc2225aeae8e6e06e53 | |
parent | 0c78f41ac7a3c29c10530e6dc37be6954bfbc2e8 (diff) | |
download | mediagoblin-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.ini | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 = |