forked from regebro/Plone-Buildout-Example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevelopment.cfg
More file actions
60 lines (49 loc) · 981 Bytes
/
Copy pathdevelopment.cfg
File metadata and controls
60 lines (49 loc) · 981 Bytes
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
[buildout]
extends = base.cfg
extensions +=
mr.developer
parts +=
python
paster
omelette
zest.releaser
test
coverage-test
coverage-report
eggs +=
Products.PDBDebugMode
Products.ZMIntrospection
Products.PrintingMailHost
Products.Clouseau
Products.DocFinderTab
plone.reload
i18ndude
auto-checkout =
[python]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
interpreter = python
scripts = python
[paster]
recipe = zc.recipe.egg
eggs =
ZopeSkel
${instance:eggs}
[omelette]
recipe = collective.recipe.omelette
eggs = ${buildout:eggs}
packages = ./
[zest.releaser]
recipe = zc.recipe.egg
eggs = zest.releaser
[test]
recipe = zc.recipe.testrunner
eggs = ${buildout:auto-checkout}
[coverage-test]
recipe = zc.recipe.testrunner
eggs = ${test:eggs}
defaults = ['--coverage', '../../coverage']
[coverage-report]
recipe = zc.recipe.egg
eggs = z3c.coverage
arguments = ('coverage', 'coverage/report')