Merge "Have tox install via setup.py develop"

This commit is contained in:
Jenkins
2013-09-04 04:46:27 +00:00
committed by Gerrit Code Review

View File

@@ -1,18 +1,21 @@
[tox] [tox]
minversion = 1.6
envlist = py26,py27,py33,pep8 envlist = py26,py27,py33,pep8
skipsdist = True
[testenv] [testenv]
sitepackages = True sitepackages = True
usedevelop = True
install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir} setenv = VIRTUAL_ENV={envdir}
LANG=en_US.UTF-8 LANG=en_US.UTF-8
LANGUAGE=en_US:en LANGUAGE=en_US:en
LC_ALL=C LC_ALL=C
deps = -U deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt -r{toxinidir}/test-requirements.txt
commands = commands =
python tools/patch_tox_venv.py python tools/patch_tox_venv.py
python setup.py testr --slowest --testr-args='{posargs}' python setup.py test --slowest --testr-args='{posargs}'
[tox:jenkins] [tox:jenkins]
sitepackages = True sitepackages = True