forked from MatthewWilkes/Zope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
106 lines (90 loc) · 1.7 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
[buildout]
extensions = mr.developer
allow-hosts =
*.python.org
*.zope.org
argparse.googlecode.com
allow-picked-versions = false
always-accept-server-certificate = true
develop = .
extends =
sources.cfg
versions.cfg
parts =
test
scripts
zopepy
alltests
allpy
docs
checkversions
wsgi
sources-dir = develop
auto-checkout =
[test]
recipe = zc.recipe.testrunner
initialization =
import sys
import warnings
if sys.version_info >= (2, 7): warnings.simplefilter('default')
eggs = Zope2
[scripts]
recipe = zc.recipe.egg
eggs = Zope2
[zopepy]
recipe = zc.recipe.egg
eggs = Zope2
interpreter = zopepy
scripts = zopepy
[alltests]
recipe = zc.recipe.testrunner
eggs =
AccessControl
Acquisition
DateTime
DocumentTemplate
ExtensionClass
Missing
MultiMapping
Persistence
Products.OFSP
Products.ZCatalog
Products.ZCTextIndex
Record
Zope2
# RestrictedPython has an optional dependency on DateTime, make sure to run its
# tests with DateTime being available
RestrictedPython
initgroups
tempstorage
zExceptions
zLOG
ZopeUndo
# these are still dependencies of CMF. Test them here, so we don't have to
# define a CMF KGS
Products.BTreeFolder2
Products.ExternalMethod
Products.MailHost
Products.PythonScripts
Products.StandardCacheManagers
[allpy]
recipe = zc.recipe.egg
eggs = ${alltests:eggs}
interpreter = allpy
scripts = allpy
[docs]
recipe = zc.recipe.egg
eggs = Sphinx
[checkversions]
recipe = zc.recipe.egg
eggs = z3c.checkversions [buildout]
[wsgi]
recipe = zc.recipe.egg
eggs =
Zope2
repoze.who
repoze.tm2
repoze.retry
Paste
PasteDeploy
PasteScript