[Checkins] SVN: zc.recipe.cmmi/trunk/test_all_pythons.cfg Add a script to easier test with different python versions.

Sebastian Wehrmann sw at gocept.com
Thu Sep 3 09:06:59 EDT 2009


Log message for revision 103502:
  Add a script to easier test with different python versions.
  

Changed:
  A   zc.recipe.cmmi/trunk/test_all_pythons.cfg

-=-
Added: zc.recipe.cmmi/trunk/test_all_pythons.cfg
===================================================================
--- zc.recipe.cmmi/trunk/test_all_pythons.cfg	                        (rev 0)
+++ zc.recipe.cmmi/trunk/test_all_pythons.cfg	2009-09-03 13:06:58 UTC (rev 103502)
@@ -0,0 +1,29 @@
+[buildout]
+extends = buildout.cfg
+parts += test24 test25 test26
+
+# 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:
+#
+# [python2.4]
+# executable = /usr/local/bin/python2.4
+#
+# And then run "bin/buildout install test24 test25 test26" to build the
+# version-specific test scripts.  Once that's done you ran run "bin/test24"
+# (etc.).
+
+[test24]
+python = python2.4
+recipe = ${test:recipe}
+eggs = ${test:eggs}
+
+[test25]
+python = python2.5
+recipe = ${test:recipe}
+eggs = ${test:eggs}
+
+[test26]
+python = python2.6
+recipe = ${test:recipe}
+eggs = ${test:eggs}



More information about the checkins mailing list