2012-06-28 12:43:12 -07:00
|
|
|
# Tox (http://tox.testrun.org/) is a tool for running tests
|
|
|
|
# in multiple virtualenvs. This configuration file will run the
|
|
|
|
# test suite on all supported python versions. To use it, "pip install tox"
|
|
|
|
# and then run "tox" from this directory.
|
|
|
|
|
|
|
|
[tox]
|
2013-07-09 00:26:59 +06:00
|
|
|
envlist = py26, py27, lucid, precise
|
2012-06-28 12:43:12 -07:00
|
|
|
|
|
|
|
[testenv]
|
2013-07-09 00:26:59 +06:00
|
|
|
deps =
|
|
|
|
-r{toxinidir}/.travis/requirements-latest.txt
|
2012-06-28 12:43:12 -07:00
|
|
|
commands =
|
2013-07-09 00:41:13 +06:00
|
|
|
{toxinidir}/bin/runtests.sh []
|
2013-07-09 00:26:59 +06:00
|
|
|
|
|
|
|
[testenv:lucid]
|
|
|
|
basepython = python2.6
|
|
|
|
deps =
|
|
|
|
-r{toxinidir}/.travis/requirements-lucid.txt
|
|
|
|
|
|
|
|
[testenv:precise]
|
|
|
|
basepython = python2.7
|
|
|
|
deps =
|
|
|
|
-r{toxinidir}/.travis/requirements-precise.txt
|
2013-07-09 00:38:00 +06:00
|
|
|
|
|
|
|
[testenv:windows]
|
|
|
|
commands =
|
2013-07-09 00:41:13 +06:00
|
|
|
{toxinidir}/bin/runtests.bat []
|
2013-08-12 18:59:13 -03:00
|
|
|
sitepackages = False
|