Skip to content
Snippets Groups Projects
tox.ini 638 B
Newer Older
Michael Foord's avatar
Michael Foord committed
[tox]
envlist = py24,py25,py26,py27,py31,pypy,py32,jython

[testenv]
deps=unittest2
commands={envbindir}/unit2 discover []


[testenv:py26]
commands=
    {envbindir}/unit2 discover []
    {envbindir}/sphinx-build -b doctest docs html
    {envbindir}/sphinx-build docs html
deps =
    unittest2
    sphinx

[testenv:py27]
commands=
    {envbindir}/unit2 discover []
    {envbindir}/sphinx-build -b doctest docs html
deps =
    unittest2
    sphinx

[testenv:py31]
deps =
    unittest2py3k

[testenv:py32]
commands=
    {envbindir}/python -m unittest discover []
deps =

[testenv:pypy]
deps=unittest2
commands={envbindir}/unit2 discover []