summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJeremy Stanley <fungi@yuggoth.org>2014-02-10 03:00:47 +0000
committerJeremy Stanley <fungi@yuggoth.org>2014-02-10 03:00:47 +0000
commitc729b6bf5828117fd3d40dc3a00ae485952a5685 (patch)
tree7ab181e4bf1427ad0590f6b403036d17a8847787 /tox.ini
parent2202cfdd01750451e2bc2c3f3365c30700bfebea (diff)
downloadheat-cfntools-c729b6bf5828117fd3d40dc3a00ae485952a5685.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: I67479804e02fea28a28a446660c32a412b3ba7c4 Closes-Bug: #1277495
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 0 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index 04c4c87..e0d8d90 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,9 +3,6 @@ envlist = py26,py27,pep8
[testenv]
setenv = VIRTUAL_ENV={envdir}
- LANG=en_US.UTF-8
- LANGUAGE=en_US:en
- LC_ALL=C
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs}'