blob: 15e36aae3169b443dfd84ac6b0800378ff9b43bf (
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
30
31
32
33
34
35
36
37
38
39
|
[tox]
envlist=py24,py25,py26,py27,py31,py32,pypy,du08,du07,du06,du05
[testenv]
deps=
nose
commands=
nosetests
sphinx-build -W -b html -d {envtmpdir}/doctrees doc {envtmpdir}/html
[testenv:py24]
deps=
nose
simplejson
[testenv:pypy]
deps=
nose
simplejson
[testenv:du05]
deps=
nose
docutils==0.5
[testenv:du06]
deps=
nose
docutils==0.6
[testenv:du07]
deps=
nose
docutils==0.7
[testenv:du08]
deps=
nose
docutils==0.8.1
|