tox.ini 677 字节
Newer Older
1 2 3 4 5 6
# 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]
D
Daniel Graña 已提交
7
envlist = py27, precise, trunk
8 9

[testenv]
10 11
deps =
    -r{toxinidir}/.travis/requirements-latest.txt
12
commands =
13
    {toxinidir}/bin/runtests.sh []
14 15 16 17 18

[testenv:precise]
basepython = python2.7
deps =
    -r{toxinidir}/.travis/requirements-precise.txt
19

20 21 22 23 24
[testenv:trunk]
basepython = python2.7
deps =
    -r{toxinidir}/.travis/requirements-trunk.txt

25 26
[testenv:windows]
commands =
27
    {toxinidir}/bin/runtests.bat []
28
sitepackages = False