SVN: zope.testing/trunk/buildout.cfg Make it easier / more natural to add eggs.
Tres Seaver <[email protected]> Wed, 2 Jun 2010 17:20:17 -0400 (EDT)
| Newsgroups | gmane.comp.web.zope.zope3.cvs |
|---|---|
| Message-ID | <[email protected]> |
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