Chris McDonough
2015-03-18 e3e87ac4fde343683b1475c024de11ab1edcbb74
commit | author | age
69e0ec 1 [tox]
CM 2 envlist = 
e3e87a 3     py26,py27,pypy,cover
CM 4
5 # this code actually works under py2.5 too but tox and virtualenv
6 # have moved on and no longer support it, so we don't test it anymore.
0c4c9f 7
69e0ec 8 [testenv]
CM 9 commands = 
0c4c9f 10     python setup.py test -q
CM 11 deps =
12     Sphinx
13     repoze.sphinx.autointerface
14     virtualenv
879ae2 15     zope.configuration<3.8.0
CM 16     zope.schema<4.0.0
c36024 17     zope.interface<4.0.0
CM 18     zope.component<4.0.0
0c5b51 19     WebOb<1.1.99
bfaf6b 20     WebTest<2.0dev
TS 21
22 [testenv:py25]
e3e87a 23 # only kept around for historical curiosity and version pinning details, unused
bfaf6b 24 commands = 
TS 25     python setup.py test -q
26 deps =
27     Sphinx
28     repoze.sphinx.autointerface
29     virtualenv
30     simplejson
31     zope.configuration<3.8.0
32     zope.schema<4.0.0
33     zope.interface<4.0.0
34     zope.component<4.0.0
35     WebOb<1.1.99
36     WebTest<2.0dev
182aa7 37
0c4c9f 38 [testenv:cover]
CM 39 basepython =
40     python2.6
41 commands = 
42     python setup.py nosetests --with-xunit --with-xcoverage
43 deps =
0c5b51 44     nose
CM 45     coverage
46     nosexcover
0c4c9f 47     Sphinx
CM 48     repoze.sphinx.autointerface
49     virtualenv
879ae2 50     zope.configuration<3.8.0
0c5b51 51     zope.schema<4.0.0
c36024 52     zope.interface<4.0.0
CM 53     zope.component<4.0.0
0c5b51 54     WebOb<1.1.99
bfaf6b 55     WebTest<2.0dev