Merge "Force LANGUAGE=en_US in test runs"

This commit is contained in:
Jenkins 2015-03-17 05:44:27 +00:00 committed by Gerrit Code Review
commit f5cd2d4911

View File

@ -8,6 +8,7 @@ usedevelop = True
install_command = pip install -U {opts} {packages} install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir} setenv = VIRTUAL_ENV={envdir}
PYTHONDONTWRITEBYTECODE = 1 PYTHONDONTWRITEBYTECODE = 1
LANGUAGE=en_US
deps = -r{toxinidir}/requirements.txt deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt -r{toxinidir}/test-requirements.txt
whitelist_externals = bash whitelist_externals = bash
@ -25,6 +26,7 @@ commands =
[testenv:cover] [testenv:cover]
setenv = VIRTUAL_ENV={envdir} setenv = VIRTUAL_ENV={envdir}
LANGUAGE=en_US
commands = commands =
python setup.py testr --coverage {posargs} python setup.py testr --coverage {posargs}
@ -48,6 +50,7 @@ commands =
[testenv:venv] [testenv:venv]
setenv = PYTHONHASHSEED=0 setenv = PYTHONHASHSEED=0
LANGUAGE=en_US
commands = {posargs} commands = {posargs}
[flake8] [flake8]