Tres Seaver
2012-11-09 4cc78d522a125aaea864c910d67117a82592d1a3
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 = 
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.