Set the environment variable

This commit is contained in:
Donald Stufft 2015-05-14 06:59:33 -04:00
parent 5bbf3fd3ff
commit 5fd4cee738
2 changed files with 4 additions and 4 deletions

View File

@ -2,10 +2,6 @@
set -e
set -x
# This is required in order to get UTF-8 output inside of the subprocesses that
# our tests use.
export LC_CTYPE=en_US.UTF-8
# We want to create the virtual environment here, but not actually run anything
tox --notest

View File

@ -2,6 +2,10 @@
envlist = docs, packaging, pep8, py3pep8, py26, py27, py32, py33, py34, pypy
[testenv]
setenv =
# This is required in order to get UTF-8 output inside of the subprocesses
# that our tests use.
LC_CTYPE = en_US.UTF-8
deps = -r{toxinidir}/dev-requirements.txt
commands = py.test --timeout 300 []
install_command = python -m pip install --pre {opts} {packages}