[Checkins] SVN: five.grok/trunk/buildout.cfg Make the tests run by explicitly depending on zope.component 3.4. This may

Martin Aspeli optilude at gmx.net
Sun Aug 3 11:35:38 EDT 2008


Log message for revision 89284:
  Make the tests run by explicitly depending on zope.component 3.4. This may
  not be necessary in the long run.
  

Changed:
  U   five.grok/trunk/buildout.cfg

-=-
Modified: five.grok/trunk/buildout.cfg
===================================================================
--- five.grok/trunk/buildout.cfg	2008-08-03 14:45:44 UTC (rev 89283)
+++ five.grok/trunk/buildout.cfg	2008-08-03 15:35:33 UTC (rev 89284)
@@ -8,12 +8,20 @@
           devel/grokcore.security
           devel/grokcore.view
 
+eggs =
+    grokcore.security
+    grokcore.view
+    zope.component>=3.4,<3.5dev
+    five.grok
+
 newest = false
 
 [zope2]
 recipe = plone.recipe.zope2install
 url = http://www.zope.org/Products/Zope/2.10.5/Zope-2.10.5-final.tgz
 fake-zope-eggs = true
+skip-fake-eggs =
+    zope.component
 
 [instance]
 recipe = plone.recipe.zope2instance
@@ -22,20 +30,20 @@
 http-address = 8080
 debug-mode = on
 verbose-security = on
-eggs = five.grok
+eggs = ${buildout:eggs}
 zcml = five.grok:meta.zcml
        five.grok
 products =
 
 [zopepy]
 recipe = zc.recipe.egg
-eggs = ${instance:eggs}
+eggs = ${buildout:eggs}
 interpreter = zopepy
 extra-paths = ${zope2:location}/lib/python
 scripts = zopepy
 
 [test]
 recipe = zc.recipe.testrunner
-eggs = ${instance:eggs}
+eggs = ${buildout:eggs}
 extra-paths = ${zope2:location}/lib/python
 defaults = ['-m', 'five.grok', '--tests-pattern', '^f?tests$', '-v']



More information about the Checkins mailing list