mediagoblin/tox.ini
Boris Bobrov 645599c2ba Pass test paths to py.test via tox
Py.test has an ability to run only tests which match the given
substring expression.

Add an ability to do it via tox.
2016-08-08 00:38:34 +03:00

14 lines
279 B
INI

[tox]
envlist = py27, py33
skipsdist = True
sitepackages = False
[testenv]
usedevelop = True
# for ExifRead 2.0.0
install_command = pip install --process-dependency-links --pre {opts} {packages}
commands = py.test ./mediagoblin/tests --boxed -k '{posargs}'
deps =
lxml
Pillow