Tres Seaver
2016-05-31 275d134e3e157dda6af5661089469c7e8a8b915f
tox.ini
@@ -1,10 +1,10 @@
[tox]
envlist = 
    py26,py27,pypy,py32,py33,py34,pypy3,cover,docs
    py27,pypy,py33,py34,py35,pypy3,cover,docs
[testenv]
commands = 
    python setup.py test -q
    python setup.py -q test -q
deps =
    zope.interface
    WebOb
@@ -12,16 +12,18 @@
[testenv:cover]
basepython =
    python2.6
    python2.7
commands = 
    nosetests -qq
    coverage erase
    coverage run --timid --source=repoze setup.py test -q
    coverage run --timid --source=repoze setup.py -q test -q
    coverage report --show-missing --omit="*fixture*"
    coverage xml
deps =
    zope.interface
    WebOb
    virtualenv
    nose
    coverage
# we separate coverage into its own testenv because a) "last run wins" wrt
@@ -30,7 +32,7 @@
[testenv:docs]
basepython =
    python2.6
    python2.7
commands = 
    sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
    sphinx-build -b doctest -d docs/_build/doctrees docs docs/_build/doctest