-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuildout.cfg
68 lines (56 loc) · 1.37 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
[buildout]
extends = ldap.cfg
develop = .
parts +=
test
py
omelette
dependencytree
coverage
extensions = mr.developer
sources-dir = ${buildout:directory}/devsrc
always-checkout = true
auto-checkout =
node
odict
plumber
zodict
zc.recipe.cmmi
[sources]
bda.cache = svn https://svn.plone.org/svn/collective/bda.cache/trunk
node = git git://github.com/bluedynamics/node.git
odict = git git://github.com/bluedynamics/odict.git
plumber = git git://github.com/bluedynamics/plumber.git
zodict = git git://github.com/bluedynamics/zodict.git
# XXX: only because of current <1.5.0b1 limitation - for us it works with 1.5
zc.recipe.cmmi = git git://github.com/bluedynamics/zc.recipe.cmmi.git
[test]
recipe = zc.recipe.testrunner
eggs =
${python-ldap:egg}
bda.ldap [test]
environment = testenv
defaults = ['--auto-color', '--auto-progress']
[py]
recipe = zc.recipe.egg
interpreter = py
eggs = ${test:eggs}
scripts =
[omelette]
recipe = collective.recipe.omelette
eggs = ${test:eggs}
ignore-develop = True
[dependencytree]
recipe = zc.recipe.egg
eggs =
${test:eggs}
tl.eggdeps
ignore-develop = True
scripts =
[coverage]
recipe = collective.recipe.template
input = inline:
#!/bin/sh
./bin/test --coverage ../../coverage -v --auto-progress "$@"
output = ${buildout:directory}/bin/coverage
mode = 755