forked from zopefoundation/Zope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
145 lines (124 loc) · 2.44 KB
/
buildout.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
[buildout]
extensions = mr.developer
allow-picked-versions = false
develop = .
extends =
sources.cfg
versions.cfg
parts =
test
zopescripts
zserverscripts
zopepy
alltests
ztktests
allpy
sphinx
checkversions
requirements
sources-dir = develop
auto-checkout =
[test]
recipe = zc.recipe.testrunner
initialization =
import sys
import warnings
warnings.simplefilter('default')
eggs = Zope2
[zopescripts]
recipe = zc.recipe.egg
eggs = Zope2
[zserverscripts]
recipe = zc.recipe.egg
eggs = ZServer
[zopepy]
recipe = zc.recipe.egg
eggs = Zope2
interpreter = zopepy
scripts = zopepy
[alltests]
recipe = zc.recipe.testrunner
eggs =
AccessControl
Acquisition
DateTime
DocumentTemplate
ExtensionClass
five.globalrequest
MultiMapping
Persistence
zExceptions
Zope2
# RestrictedPython has an optional dependency on DateTime, make sure to run its
# tests with DateTime being available
RestrictedPython
# Test optional dependencies.
Missing
Products.BTreeFolder2
Products.MailHost
Products.ZCatalog
Record
ZServer
[ztktests]
recipe = zc.recipe.testrunner
eggs =
zope.annotation
zope.browser
zope.browsermenu
zope.browserpage
zope.browserresource
zope.component
zope.configuration
zope.container
zope.contentprovider
zope.contenttype
zope.deferredimport
zope.dottedname
zope.event
zope.exceptions
zope.filerepresentation
zope.i18n
zope.i18nmessageid
zope.interface
zope.lifecycleevent
zope.location
zope.pagetemplate
zope.proxy
zope.processlifetime
zope.ptresource
zope.publisher
zope.schema
zope.security
zope.sendmail
zope.sequencesort
zope.site[test]
zope.size
zope.structuredtext
zope.tal
zope.tales
zope.testbrowser[test]
zope.testing
zope.testrunner
zope.traversing
zope.viewlet
[allpy]
recipe = zc.recipe.egg
eggs = ${alltests:eggs}
interpreter = allpy
scripts = allpy
[sphinx]
recipe = collective.recipe.sphinxbuilder
build = ${buildout:directory}/docs/_build
source = ${buildout:directory}/docs
outputs = html
script-name = make-docs
extra-paths = ${buildout:directory}
[checkversions]
recipe = zc.recipe.egg
eggs = z3c.checkversions [buildout]
[requirements]
recipe = plone.recipe.command
command =
${zopepy:bin-directory}/${zopepy:interpreter} util.py
update-command = ${:command}
stop-on-error = yes