[Checkins] SVN: zc.buildout/trunk/buildout.cfg Added separate test scripts for different Python versions, making it

Jim Fulton jim at zope.com
Sun Jan 13 14:36:04 EST 2008


Log message for revision 82849:
  Added separate test scripts for different Python versions, making it
  easier to test multiple versions at once.
  

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

-=-
Modified: zc.buildout/trunk/buildout.cfg
===================================================================
--- zc.buildout/trunk/buildout.cfg	2008-01-13 19:08:14 UTC (rev 82848)
+++ zc.buildout/trunk/buildout.cfg	2008-01-13 19:36:04 UTC (rev 82849)
@@ -1,22 +1,26 @@
 [buildout]
 develop = zc.recipe.egg_ .
-parts = test py oltest
-find-links = http://download.zope.org/distribution
+parts = 
+      test2.3 py2.3 oltest2.3
+      test2.4 py2.4 oltest2.4
+      test2.5 py2.5 oltest2.5
 
-[py]
+[py2.3]
 recipe = zc.recipe.egg
 eggs = zc.buildout
-scripts = py
-interpreter = py
+scripts = py2.3
+interpreter = py2.3
+python = python2.3
 
-[test]
+[test2.3]
 recipe = zc.recipe.testrunner
 eggs = 
   zc.buildout
   zc.recipe.egg
+python = python2.3
 
 # Tests that can be run wo a network
-[oltest]
+[oltest2.3]
 recipe = zc.recipe.testrunner
 eggs = 
   zc.buildout
@@ -26,3 +30,61 @@
   '-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