[Checkins] SVN: zc.buildout/trunk/test_all_pythons.cfg added config for building test runners for all relevant Python versions

Thomas Lotze tl at gocept.com
Wed Jul 22 08:47:13 EDT 2009


Log message for revision 102062:
  added config for building test runners for all relevant Python versions

Changed:
  A   zc.buildout/trunk/test_all_pythons.cfg

-=-
Added: zc.buildout/trunk/test_all_pythons.cfg
===================================================================
--- zc.buildout/trunk/test_all_pythons.cfg	                        (rev 0)
+++ zc.buildout/trunk/test_all_pythons.cfg	2009-07-22 12:47:13 UTC (rev 102062)
@@ -0,0 +1,47 @@
+[buildout]
+extends = buildout.cfg
+parts += test24 test25 test26 oltest24 oltest25 oltest26
+
+# 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}
+
+[oltest24]
+python = python2.4
+recipe = ${oltest:recipe}
+eggs = ${oltest:eggs}
+defaults = ${oltest:defaults}
+
+[oltest25]
+python = python2.5
+recipe = ${oltest:recipe}
+eggs = ${oltest:eggs}
+defaults = ${oltest:defaults}
+
+[oltest26]
+python = python2.6
+recipe = ${oltest:recipe}
+eggs = ${oltest:eggs}
+defaults = ${oltest:defaults}



More information about the Checkins mailing list