blob: cedda4f3704b2aab67bd854f31b820dae21696bf (
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
40
41
42
|
[tox]
envlist=py25,py26,py27,py31,py32,py33,pypy,du09,du08,du07
[testenv]
deps=
nose
setenv =
BUILD_TEST_PATH = {envdir}/tests
commands=
{envpython} tests/run.py {posargs}
sphinx-build -W -b html -d {envtmpdir}/doctrees doc {envtmpdir}/html
[testenv:py25]
deps=
nose
simplejson==2.5.0
[testenv:py33]
deps=
nose
#svn+http://docutils.svn.sourceforge.net/svnroot/docutils/trunk/docutils
docutils>=0.10.0
[testenv:pypy]
deps=
nose
simplejson
[testenv:du07]
deps=
nose
docutils==0.7
[testenv:du08]
deps=
nose
docutils==0.8.1
[testenv:du09]
deps=
nose
docutils==0.9.1
|