Toni Mueller
2013-12-13 3869bf25422377612e96a318090e19f3949dd29d
commit | author | age
96e536 1 [tox]
TS 2 envlist = 
a7e0c5 3     py26,py27,py32,py33,pypy,cover,docs
96e536 4
TS 5 [testenv]
6 commands = 
7     python setup.py test -q
8 deps =
9     zope.interface
10     WebOb
11     virtualenv
12
13 [testenv:cover]
14 basepython =
15     python2.6
16 commands = 
745dec 17     nosetests --with-xunit --with-xcoverage
96e536 18 deps =
TS 19     zope.interface
20     WebOb
21     virtualenv
22     nose
03b15b 23     coverage
96e536 24     nosexcover
TS 25
26 # we separate coverage into its own testenv because a) "last run wins" wrt
27 # cobertura jenkins reporting and b) pypy and jython can't handle any
28 # combination of versions of coverage and nosexcover that i can find.
58c1e9 29
TS 30 [testenv:docs]
31 basepython =
32     python2.6
33 commands = 
34     sphinx-build -b html -d docs/_build/doctrees docs docs/_build/html
35     sphinx-build -b doctest -d docs/_build/doctrees docs docs/_build/doctest
36 deps =
37     Sphinx
38     repoze.sphinx.autointerface