blob: e4d4147cc8ba7fd04b2bfe644e28f214f8c29cac [file] [log] [blame]
Joshua Hesketha6e26f52013-07-29 11:51:20 +10001# Tox (http://tox.testrun.org/) is a tool for running tests
2# in multiple virtualenvs. This configuration file will run the
3# test suite on all supported python versions. To use it, "pip install tox"
4# and then run "tox" from this directory.
5
6[tox]
7envlist = py26, py27, py33
8
9[testenv]
10sitepackages = True
11setenv = VIRTUAL_ENV={envdir}
12 LANG=en_US.UTF-8
13 LANGUAGE=en_US:en
14 LC_ALL=C
15deps = -U
16 -r{toxinidir}/requirements.txt
17 -r{toxinidir}/test-requirements.txt
18commands = {envpython} setup.py test