summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Stanley <fungi@yuggoth.org>2014-02-10 03:08:26 +0000
committerDavanum Srinivas <dims@linux.vnet.ibm.com>2014-02-11 08:48:24 -0500
commit3e918dffe02b8652b86bfc8f05a90f4d356ec2b5 (patch)
tree1de9c17a7db923b6dbc66c38966e758c11a96215
parent3bd1c8083314308dc603cd9f1a76cf1560af5858 (diff)
downloadoslo-version-3e918dffe02b8652b86bfc8f05a90f4d356ec2b5.tar.gz
Remove tox locale overrides
* tox.ini: The LANG, LANGUAGE and LC_ALL environment overrides were introduced originally during the testr migration in an attempt to be conservative about the possibility that locale settings in the calling environment could cause consistency problems for test runs. In actuality, this should be unnecessary and any place where it does cause issues ought to be considered an actual bug. Also, having these in the configuration actively causes older pip to have problems with non-ASCII content in some package metadata files under Python 3, so drop it now. Change-Id: Ia910ded1789a1a8fac7d82f1ce97300ad7bfefda Closes-Bug: #1277495
-rw-r--r--tox.ini3
1 files changed, 0 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index fc54f73..91a01ad 100644
--- a/tox.ini
+++ b/tox.ini
@@ -5,9 +5,6 @@ envlist = py26,py27,pypy,pep8
[testenv]
install_command = pip install {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
- LANG=en_US.UTF-8
- LANGUAGE=en_US:en
- LC_ALL=C
deps = -r{toxinidir}/test-requirements.txt
commands =
python setup.py testr --testr-args='{posargs}'