forked from zopefoundation/Zope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzope-ecosystem.cfg
45 lines (38 loc) · 1.1 KB
/
zope-ecosystem.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Zope together with some Products from its ecosystem.
#
# This configuration can be used to run a Zope instance together with some packages
# from the Zope ecosystem mainly to try out checkouts of `master` or branches and
# run the tests against Zope `master`.
#
# Usage:
# $ bin/buildout -c zope-ecosystem.cfg
[buildout]
extends = buildout.cfg
allow-picked-versions = true
show-picked-versions = true
additional_packages =
Products.CMFCore
Products.ExternalMethod
Products.MailHost
Products.PythonScripts
Products.Sessions
Products.SiteErrorLog
Products.TemporaryFolder
Products.ZODBMountPoint
auto-checkout +=
Products.CMFCore
Products.PythonScripts
Products.Sessions
Products.TemporaryFolder
Products.SiteErrorLog
Products.ZODBMountPoint
[sources]
Products.CMFCore = git ${remotes:github}/Products.CMFCore pushurl=${remotes:github_push}/Products.CMFCore
[scripts]
eggs += ${buildout:additional_packages}
[zopescripts]
eggs += ${buildout:additional_packages}
[allpy]
eggs += ${buildout:additional_packages}
[alltests]
eggs += ${buildout:additional_packages}