[Zope3-checkins] SVN: zope.testing/trunk/buildout.cfg Make it easier / more natural to add eggs.

Tres Seaver tseaver at palladion.com
Wed Jun 2 17:20:17 EDT 2010


Log message for revision 112941:
  Make it easier / more natural to add eggs.

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

-=-
Modified: zope.testing/trunk/buildout.cfg
===================================================================
--- zope.testing/trunk/buildout.cfg	2010-06-02 20:54:08 UTC (rev 112940)
+++ zope.testing/trunk/buildout.cfg	2010-06-02 21:20:17 UTC (rev 112941)
@@ -1,12 +1,13 @@
 [buildout]
 develop = .
-parts = test
+parts =
+    test
 
 [test]
 recipe = zc.recipe.testrunner
-eggs = zope.testing
+eggs =
+    zope.testing
 
-
 # The [test2X] sections below are to make testing with various Python versions
 # easier.  You'll need entries in your default.cfg that point to the location
 # that your various versions of Python are installed.  Like so:
@@ -21,14 +22,17 @@
 [test24]
 python = python2.4
 recipe = zc.recipe.testrunner
-eggs = zope.testing
+eggs =
+    zope.testing
 
 [test25]
 python = python2.5
 recipe = zc.recipe.testrunner
-eggs = zope.testing
+eggs =
+    zope.testing
 
 [test26]
 python = python2.6
 recipe = zc.recipe.testrunner
-eggs = zope.testing
+eggs =
+    zope.testing



More information about the Zope3-Checkins mailing list