-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildout.cfg
59 lines (49 loc) · 958 Bytes
/
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
[buildout]
parts =
instance
test
coverage-report
omelette
zopepy
zopeskel
checkversions
extends =
packages.cfg
auto-checkout = *
always-checkout = true
[instance]
recipe = plone.recipe.zope2instance
http-address = 8080
user = admin:admin
verbose-security = on
eggs =
${eggs:main}
${eggs:devtools}
[test]
recipe = collective.xmltestreport
eggs =
${eggs:test}
defaults = ['--exit-with-status', '--auto-color', '--auto-progress',
'--verbose', '--ndiff']
[coverage-report]
recipe = zc.recipe.egg
eggs = z3c.coverage
scripts = coveragereport
arguments = ('parts/test/coverage', 'coverage')
[omelette]
recipe = collective.recipe.omelette
eggs =
${eggs:main}
${eggs:devtools}
[zopepy]
recipe = zc.recipe.egg
eggs =
${eggs:main}
${eggs:devtools}
interpreter = zopepy
[zopeskel]
recipe = zc.recipe.egg
eggs = ZopeSkel
[checkversions]
recipe = zc.recipe.egg
eggs = z3c.checkversions [buildout]