summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 4fccbaab2b2fa461abe8bc9e025473dc343ee065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[tox]
envlist = py24,py25,py26,py27,py31

[testenv]
deps=unittest2
commands=unit2 discover []

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

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

[testenv:py31]
commands=
    unit2 discover []
deps = 
    unittest2py3k