summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2015-02-24 11:39:58 -0500
committerScott Moser <smoser@ubuntu.com>2015-02-24 11:39:58 -0500
commitd12d8cf6c29395ba6cd51dfcc1387d26b5c00f61 (patch)
tree4c890594432f6b1ee5ccacb4fa1298c63e50ff7e /tox.ini
parenta37b3e0c1dcf1137744f0a123a5a535a93f799e7 (diff)
downloadvyos-cloud-init-d12d8cf6c29395ba6cd51dfcc1387d26b5c00f61.tar.gz
vyos-cloud-init-d12d8cf6c29395ba6cd51dfcc1387d26b5c00f61.zip
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.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 3 insertions, 1 deletions
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}