[Zope3-checkins] SVN: zope.testing/branches/3.9/buildout.cfg - fixed recipe version, so zope.testrunner does not sneak in
Michael Howitz
mh at gocept.com
Mon Feb 21 07:51:31 EST 2011
Log message for revision 120497:
- fixed recipe version, so zope.testrunner does not sneak in
- added test support for Python 2.7
Changed:
U zope.testing/branches/3.9/buildout.cfg
-=-
Modified: zope.testing/branches/3.9/buildout.cfg
===================================================================
--- zope.testing/branches/3.9/buildout.cfg 2011-02-21 12:23:44 UTC (rev 120496)
+++ zope.testing/branches/3.9/buildout.cfg 2011-02-21 12:51:30 UTC (rev 120497)
@@ -1,7 +1,11 @@
[buildout]
develop = .
parts = test
+versions = versions
+[versions]
+zc.recipe.testrunner = 1.2.1
+
[test]
recipe = zc.recipe.testrunner
eggs = zope.testing
@@ -14,7 +18,7 @@
# [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.).
@@ -32,3 +36,8 @@
python = python2.6
recipe = zc.recipe.testrunner
eggs = zope.testing
+
+[test27]
+python = python2.7
+recipe = zc.recipe.testrunner
+eggs = zope.testing
More information about the Zope3-Checkins
mailing list