summaryrefslogtreecommitdiff
path: root/tox.ini
blob: f308880e126bf0a53ccb3af10d1f7413070c87a2 (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
43
44
45
46
47
[tox]
envlist=py26,py27,py33,py34,pypy,du12,du11,du10

[testenv]
deps=
    nose
    sqlalchemy
    whoosh
setenv =
    SPHINX_TEST_TEMPDIR = {envdir}/testbuild
commands=
    {envpython} tests/run.py {posargs}
    sphinx-build -q -W -b html -d {envtmpdir}/doctrees doc {envtmpdir}/html

[testenv:py26]
deps=
    mock
    {[testenv]deps}

[testenv:py27]
deps=
    mock
    {[testenv]deps}

[testenv:pypy]
deps=
    mock
    simplejson
    {[testenv]deps}

[testenv:du10]
deps=
    mock
    docutils==0.10
    {[testenv]deps}

[testenv:du11]
deps=
    mock
    docutils==0.11
    {[testenv]deps}

[testenv:du12]
deps=
    mock
    docutils==0.12
    {[testenv]deps}