[Checkins] SVN: zope.testrunner/trunk/buildout.cfg - added testing support for Python 2.7

Michael Howitz mh at gocept.com
Wed Feb 16 04:16:32 EST 2011


Log message for revision 120374:
  - added testing support for Python 2.7
  - using the test extra for version tests because zope.testing is needed by the tests
  

Changed:
  U   zope.testrunner/trunk/buildout.cfg

-=-
Modified: zope.testrunner/trunk/buildout.cfg
===================================================================
--- zope.testrunner/trunk/buildout.cfg	2011-02-16 05:04:43 UTC (rev 120373)
+++ zope.testrunner/trunk/buildout.cfg	2011-02-16 09:16:31 UTC (rev 120374)
@@ -14,21 +14,26 @@
 # [python2.4]
 # executable = /usr/local/bin/python2.4
 #
-# And then run "bin/buildout install test24 test25 test26" to build the
+# And then run "bin/buildout install test24 test25 test26 test27" to build the
 # version-specific test scripts.  Once that's done you ran run "bin/test24"
 # (etc.).
 
 [test24]
 python = python2.4
 recipe = zc.recipe.testrunner
-eggs = zope.testrunner
+eggs = zope.testrunner[test]
 
 [test25]
 python = python2.5
 recipe = zc.recipe.testrunner
-eggs = zope.testrunner
+eggs = zope.testrunner[test]
 
 [test26]
 python = python2.6
 recipe = zc.recipe.testrunner
-eggs = zope.testrunner
+eggs = zope.testrunner[test]
+
+[test27]
+python = python2.7
+recipe = zc.recipe.testrunner
+eggs = zope.testrunner[test]



More information about the checkins mailing list