Tres Seaver
2012-03-19 96e536ce8d784765a4e73bf3f4a9d52e61b360c7
commit | author | age
96e536 1 [tox]
TS 2 envlist = 
3     py26,py27,py32,pypy,cover
4
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 = 
17     python setup.py nosetests --with-xunit --with-xcoverage
18 deps =
19     zope.interface
20     WebOb
21     virtualenv
22     nose
23     coverage==3.4
24     nosexcover
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.