[Checkins] SVN: zc.buildout/trunk/buildout.cfg Simplified config to not try to build multiple test runners at once.

Jim Fulton jim at zope.com
Thu Jul 17 15:17:49 EDT 2008


Log message for revision 88461:
  Simplified config to not try to build multiple test runners at once.
  

Changed:
  U   zc.buildout/trunk/buildout.cfg

-=-
Modified: zc.buildout/trunk/buildout.cfg
===================================================================
--- zc.buildout/trunk/buildout.cfg	2008-07-17 17:00:27 UTC (rev 88460)
+++ zc.buildout/trunk/buildout.cfg	2008-07-17 19:17:48 UTC (rev 88461)
@@ -1,26 +1,20 @@
 [buildout]
 develop = zc.recipe.egg_ .
-parts = 
-      test2.3 py2.3 oltest2.3
-      test2.4 py2.4 oltest2.4
-      test2.5 py2.5 oltest2.5
+parts = test oltest py
 
-[py2.3]
+[py]
 recipe = zc.recipe.egg
 eggs = zc.buildout
-scripts = py2.3
-interpreter = py2.3
-python = python2.3
+interpreter = py
 
-[test2.3]
+[test]
 recipe = zc.recipe.testrunner
 eggs = 
   zc.buildout
   zc.recipe.egg
-python = python2.3
 
 # Tests that can be run wo a network
-[oltest2.3]
+[oltest]
 recipe = zc.recipe.testrunner
 eggs = 
   zc.buildout
@@ -30,61 +24,3 @@
   '-t',
   '!(bootstrap|selectingpython|selecting-python)',
   ]
-python = python2.3
-
-
-[py2.4]
-recipe = zc.recipe.egg
-eggs = zc.buildout
-scripts = py2.4
-interpreter = py2.4
-python = python2.4
-
-[test2.4]
-recipe = zc.recipe.testrunner
-eggs = 
-  zc.buildout
-  zc.recipe.egg
-python = python2.4
-
-# Tests that can be run wo a network
-[oltest2.4]
-recipe = zc.recipe.testrunner
-eggs = 
-  zc.buildout
-  zc.recipe.egg
-defaults =
-  [
-  '-t',
-  '!(bootstrap|selectingpython|selecting-python)',
-  ]
-python = python2.4
-
-
-[py2.5]
-recipe = zc.recipe.egg
-eggs = zc.buildout
-scripts = py2.5
-interpreter = py2.5
-python = python2.5
-
-[test2.5]
-recipe = zc.recipe.testrunner
-eggs = 
-  zc.buildout
-  zc.recipe.egg
-python = python2.5
-
-# Tests that can be run wo a network
-[oltest2.5]
-recipe = zc.recipe.testrunner
-eggs = 
-  zc.buildout
-  zc.recipe.egg
-defaults =
-  [
-  '-t',
-  '!(bootstrap|selectingpython|selecting-python)',
-  ]
-python = python2.5
-



More information about the Checkins mailing list