summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 2c2419ff0693a476dbfea56c7151412ee1aad024 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[tox]
envlist = py26,py27,py33,py34,pypy,pypy3

[testenv]
deps=
    coverage
    nose
    webob
    webtest
commands=
    python -bb -m nose tests {posargs}

[testenv:py26]
# Ony Python 2.6, python -m test doesn't work. Anyway, python -bb is only
# interested on Python 3.
commands=
    nosetests tests {posargs}