From 9cb5cd74fb54cc0043d072c89a095be834fd391a Mon Sep 17 00:00:00 2001 From: Scott Moser Date: Tue, 24 Feb 2015 11:39:58 -0500 Subject: [PATCH] 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. --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 20ba6546..3619edf4 100644 --- a/tox.ini +++ b/tox.ini @@ -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}