Fix UnicodeDecodeError in py3 jenkins job

Some python libs installing failed in py3 jenkins
environment because LC_ALL=C in tox.ini, change it
to LC_ALL=en_US.utf-8.

Change-Id: Idb6493aab48ce9f10228a2b87543e6b3db7e5fb2
This commit is contained in:
Rui Chen 2015-07-22 09:20:37 +08:00
parent d272627e52
commit b94a1834e0
1 changed files with 4 additions and 4 deletions

View File

@ -8,8 +8,8 @@ install_command = pip install -U {opts} {packages}
setenv =
VIRTUAL_ENV={envdir}
LANG=en_US.UTF-8
LANGUAGE=en_US:en
LC_ALL=C
LANGUAGE=en_US
LC_ALL=en_US.utf-8
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs}'
@ -28,8 +28,8 @@ setenv =
TEST_BENCHMARK=true
VIRTUAL_ENV={envdir}
LANG=en_US.UTF-8
LANGUAGE=en_US:en
LC_ALL=C
LANGUAGE=en_US
LC_ALL=en_US.utf-8
commands = python setup.py testr --no-parallel --testr-args='test_benchmark {posargs}'
testr slowest --all