Skip to content
This repository has been archived by the owner on May 13, 2020. It is now read-only.

Commit

Permalink
zc.buildout 1.6.x supports python 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Groszer committed Aug 22, 2012
1 parent 581ddac commit 675ade3
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -744,13 +744,17 @@ ZC_BUILDOUT_PLATFORMS = CLEAN_PLATFORMS.copy()
del ZC_BUILDOUT_PLATFORMS['py_244_win32']
del ZC_BUILDOUT_PLATFORMS['py_254_win32']

ZC_BUILDOUT_PLATFORMS_16 = CLEAN_PLATFORMS.copy()
del ZC_BUILDOUT_PLATFORMS_16['py_244_win32']

def setup_zc_buildout_dev_tests(slow_lock, hour=02, minute=20, branch='HEAD'):

def setup_zc_buildout_dev_tests(slow_lock, hour=02, minute=20, branch='HEAD',
platforms=ZC_BUILDOUT_PLATFORMS):
#hour = 02
#minute = 20
builders = []
for pname in sorted(ZC_BUILDOUT_PLATFORMS.keys()):
platform = ZC_BUILDOUT_PLATFORMS[pname]
for pname in sorted(platforms.keys()):
platform = platforms[pname]
name = "zc_buildout_dev %s %s" % (platform.name, branch)
builders.append(name)
c['builders'].append(
Expand Down Expand Up @@ -1032,7 +1036,6 @@ def bsquare_make_factory(svn_url):
description="buildout",
timeout=3600))


if is_win32:
command = "bin\\test.exe --exit-with-status -1"
else:
Expand Down Expand Up @@ -1161,7 +1164,8 @@ setupZTK_dev_tests(slow_lock, hour=20, minute=10)
setupZTK_10_tests(slow_lock, hour=20, minute=20)
setupZTK_11_tests(slow_lock, hour=20, minute=30)
setup_zc_buildout_dev_tests(slow_lock, hour=20, minute=40, branch='master')
setup_zc_buildout_dev_tests(slow_lock, hour=20, minute=40, branch='1.6.x')
setup_zc_buildout_dev_tests(slow_lock, hour=20, minute=40, branch='1.6.x',
platforms=ZC_BUILDOUT_PLATFORMS_16)
setup_ZODB_dev_tests(slow_lock, hour=20, minute=50)
setup_BB_dev_tests(slow_lock, hour=20, minute=55)

Expand Down

0 comments on commit 675ade3

Please sign in to comment.