[Checkins] SVN: zope.container/trunk/buildout.cfg - removed versions pinning (no longer necessary, tests run both with ZODB 3.8 and 3.9)

Michael Howitz mh at gocept.com
Fri Apr 3 03:12:45 EDT 2009


Log message for revision 98812:
  - removed versions pinning (no longer necessary, tests run both with ZODB 3.8 and 3.9)
  - added coverage analysis

Changed:
  U   zope.container/trunk/buildout.cfg

-=-
Modified: zope.container/trunk/buildout.cfg
===================================================================
--- zope.container/trunk/buildout.cfg	2009-04-03 07:07:09 UTC (rev 98811)
+++ zope.container/trunk/buildout.cfg	2009-04-03 07:12:45 UTC (rev 98812)
@@ -1,12 +1,7 @@
 [buildout]
 develop = .
-parts = test graph
-versions = versions
+parts = test graph coverage-test coverage-report
 
-[versions]
-ZODB3 = 3.8
-zope.app.apidoc = 3.5
-
 [test]
 recipe = zc.recipe.testrunner
 eggs = zope.container[test]
@@ -15,3 +10,14 @@
 recipe = zc.recipe.egg
 eggs = ${test:eggs}
        tl.eggdeps
+
+[coverage-test]
+recipe = zc.recipe.testrunner
+eggs = ${test:eggs}
+defaults = ['--coverage', '../../coverage']
+
+[coverage-report]
+recipe = zc.recipe.egg
+eggs = z3c.coverage
+scripts = coverage=coverage-report
+arguments = ('coverage', 'coverage/report')



More information about the Checkins mailing list