forked from IMIO/imio.pm.locales
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev.cfg
67 lines (56 loc) · 1.22 KB
/
dev.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
[buildout]
extends =
base.cfg
versions-dev.cfg
parts +=
test
coverage
report
extensions +=
mr.developer
auto-checkout +=
z3c.soap
[sources]
z3c.soap = git git://github.com/zopefoundation/z3c.soap.git
[instance1]
#use the instance1 eggs to extends the base eggs defined in [buildout]
recipe = plone.recipe.zope2instance
debug-mode = on
verbose-security = on
environment-vars +=
ENABLE_PRINTING_MAILHOST True
eggs +=
Products.PrintingMailHost
archetypes.schematuning
ipdb
iw.debug
plone.reload
z3c.soap
zcml +=
iw.debug
z3c.soap
# create bin/test command
[test]
recipe = zc.recipe.testrunner
defaults = ['--auto-color', '--auto-progress']
eggs =
ipdb
imio.pm.ws [test]
z3c.soap [test]
environment = testenv
[testenv]
zope_i18n_compile_mo_files = true
# create bin/coverage commant
[coverage]
recipe = zc.recipe.egg
eggs = coverage
initialization =
include = '--source=${buildout:directory}/src/imio/pm/ws'
sys.argv = sys.argv[:] + ['run', include, 'bin/test', '--all', '-s', 'imio.pm.ws']
# create bin/report command
[report]
recipe = zc.recipe.egg
eggs = coverage
scripts = coverage=report
initialization =
sys.argv = sys.argv[:] + ['html', '-i']