tox: set LC_ALL=en_US.utf-8 rather than C

this works around an issue in httpretty where it is not able to install
in tox if LC_ALL is set to C.
This commit is contained in:
Scott Moser 2015-02-24 11:39:58 -05:00
parent bb3135c864
commit 9cb5cd74fb

View File

@ -11,8 +11,10 @@ deps =
nose
pep8==1.5.7
pyflakes
# https://github.com/gabrielfalcao/HTTPretty/issues/223
setenv =
LC_ALL = C
LC_ALL = en_US.utf-8
[testenv:py26]
commands = nosetests {posargs:tests}