forked from plone/plone.app.event
-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.cfg
78 lines (63 loc) · 1.49 KB
/
base.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
# plone.app.event plip
# ====================
# see:
# http://dev.plone.org/plone/ticket/10886
# for reference, the old plip:
# http://dev.plone.org/plone/ticket/9302
[buildout]
extends =
http://svn.plone.org/svn/collective/buildout/plonetest/plone-4.1.x.cfg
extensions = mr.developer
always-accept-server-certificate = true
sources-dir = ${buildout:directory}/devsrc
develop = .
package-name = plone.app.event
parts +=
omelette
test
releaser
zopepy
sphinxbuilder
sphinxupload
[instance]
eggs +=
plone.reload
Pillow
[omelette]
recipe = collective.recipe.omelette
eggs = ${instance:eggs}
packages = ${instance:location}/lib/python ./
[releaser]
recipe = zc.recipe.egg
eggs = jarn.mkrelease
[zopepy]
recipe = zc.recipe.egg
eggs =
${test:eggs}
interpreter = zopepy
scripts = zopepy
[sphinxbuilder]
recipe = collective.recipe.sphinxbuilder
interpreter = ${buildout:directory}/bin/zopepy
[sphinxupload]
recipe = collective.recipe.template
input = inline:
#!/bin/sh
bin/zopepy setup.py upload_sphinx
output = ${buildout:directory}/bin/sphinxupload
mode = 755
[testenv]
APP_PATH = ${buildout:directory}
[test]
recipe = zc.recipe.testrunner
defaults = ['--auto-color', '--auto-progress']
environment = testenv
[coverage-test]
recipe = zc.recipe.testrunner
eggs = ${test:eggs}
defaults = ['--coverage', '../../coverage', '-v', '--auto-progress']
[coverage-report]
recipe = zc.recipe.egg
eggs = z3c.coverage
scripts = coveragereport
arguments = ('coverage', 'report')