buildout's buildout seems broken (tests also)
Hi, does anybody know how the tests for zc.buildout are supposed to be bootstrapped/configured? The information that I have is: - checkout zc.buildout - run `python dev.cfg` - run tests I noticed that the buildout.cfg of zc.buildout contains sections to create test runners for Python 2.3, 2.4 and 2.5. When running the `dev.cfg` it runs buildout and fails with the following error: Develop: '/home/ctheune/Development/zc.buildout/.' While: Installing. Getting section test2.3. Initializing part test2.3. Getting section python2.3. Error: The referenced section, 'python2.3', was not defined. I tweaked the buildout a bit to ignore the Python versions so I could at least run the tests for Python 2.4, which in turn gave me a couple other errors that I don't think are related to the buildout configuration. See the attached log for the specific errors. Christian -- Christian Theune · ct@gocept.com gocept gmbh & co. kg · forsterstraße 29 · 06112 halle (saale) · germany http://gocept.com · tel +49 345 1229889 7 · fax +49 345 1229889 1 Zope and Plone consulting and development
Christian Theune wrote:
Develop: '/home/ctheune/Development/zc.buildout/.' While: Installing. Getting section test2.3. Initializing part test2.3. Getting section python2.3. Error: The referenced section, 'python2.3', was not defined.
FWIW, I made the following changes to get things working on my system: Index: buildout.cfg =================================================================== --- buildout.cfg (revision 87552) +++ buildout.cfg (working copy) @@ -5,6 +5,9 @@ test2.4 py2.4 oltest2.4 test2.5 py2.5 oltest2.5 +[python2.3] +executable = /usr/bin/python2.3 + [py2.3] recipe = zc.recipe.egg eggs = zc.buildout @@ -32,6 +35,8 @@ ] python = python2.3 +[python2.4] +executable = /opt/local/bin/python2.4 [py2.4] recipe = zc.recipe.egg @@ -60,6 +65,8 @@ ] python = python2.4 +[python2.5] +executable = /opt/local/bin/python2.5 [py2.5] recipe = zc.recipe.egg \malthe
participants (2)
-
Christian Theune -
Malthe Borch