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

[testenv]
deps=
    # Adds nosetests command to setup.py
    nose
commands=
    python -bb setup.py nosetests {posargs:--with-coverage}

    # We could to this in dependencies, but explicit is better than implicit
    pip install .[middleware]
    # webob optional dependency is fulfilled by [middleware] extra requirement
    python -c "import webob"