diff options
author | Scott Moser <smoser@ubuntu.com> | 2015-02-24 11:39:58 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2015-02-24 11:39:58 -0500 |
commit | d12d8cf6c29395ba6cd51dfcc1387d26b5c00f61 (patch) | |
tree | 4c890594432f6b1ee5ccacb4fa1298c63e50ff7e /tox.ini | |
parent | a37b3e0c1dcf1137744f0a123a5a535a93f799e7 (diff) | |
download | vyos-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.ini | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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} |