summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 06d29de45dba0335928a6f99f9b930f0caf95b50 (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
[tox]
envlist = py27,py33,py34,py35

[testenv]
deps =
    nose
    setuptools>=6.1
commands =
    python setup.py nosetests

[testenv:py26]
deps =
    argparse
    unittest2
    ordereddict
    configparser
    {[testenv]deps}

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

[testenv:debian]
deps=
    html5lib==0.95
    ipaddr==2.1.10
    itsdangerous==0.22
    misaka==1.0.2
    passlib==1.5.3
    werkzeug==0.8.3

[testenv:squeeze]
basepython=python2.6
deps=
    {[testenv:py26]deps}
    {[testenv:debian]deps}

[testenv:wheezy]
basepython=python2.7
deps =
    {[testenv:py27]deps}
    {[testenv:debian]deps}