Tres Seaver
2012-11-05 6f94721daea5cd4556f96deedbbdab18dc65daa1
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.