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

[testenv]
deps=
    nose  # Adds nosetests command to setup.py
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"