mediagoblin/tox.ini
Christopher Allan Webber b6df960806 Set up tox.ini to run more properly:
- Don't run dbupdate... the tests themselves do this, and we might
   mess up someone's db
 - We shouldn't run setup.py develop because that installs a new
   *live* db... the tests do isolation, so...
 - Install the package's dependencies by the package itself... it
   seems that removing "skipsdist = True" fixes this
 - Run py.test manually rather than use runtests.sh (which itself uses
   ./bin/py.test if it can)
2014-09-12 09:26:01 -05:00

13 lines
221 B
INI

[tox]
envlist = py27, py33
usedevelop = True
sitepackages = False
[testenv]
whitelist_externals = sh
commands = py.test ./mediagoblin/tests --boxed
deps =
git+https://github.com/ianare/exif-py.git@develop
lxml
Pillow