-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev.cfg
97 lines (88 loc) · 4.53 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[buildout]
extends = base.cfg
parts +=
test
profile
coverage
pydev
extensions = mr.developer
sources-dir = ${buildout:directory}/devsrc
always-checkout = force
auto-checkout = *
[remotes]
cs = git://github.com/conestack
cs_push = [email protected]:conestack
bda = git://github.com/bluedynamics
bda_push = [email protected]:bluedynamics
[sources]
odict = git ${remotes:cs}/odict.git pushurl=${remotes:cs_push}/odict.git
plumber = git ${remotes:cs}/plumber.git pushurl=${remotes:cs_push}/plumber.git
node = git ${remotes:cs}/node.git pushurl=${remotes:cs_push}/node.git
yafowil = git ${remotes:cs}/yafowil.git pushurl=${remotes:cs_push}/yafowil.git
yafowil.yaml = git ${remotes:cs}/yafowil.yaml.git pushurl=${remotes:cs_push}/yafowil.yaml.git
yafowil.webob = git ${remotes:cs}/yafowil.webob.git pushurl=${remotes:cs_push}/yafowil.webob.git
yafowil.bootstrap = git ${remotes:cs}/yafowil.bootstrap.git pushurl=${remotes:cs_push}/yafowil.bootstrap.git
#yafowil.widget.alohaeditor = git ${remotes:cs}/yafowil.widget.alohaeditor.git pushurl=${remotes:cs_push}/yafowil.widget.alohaeditor.git
yafowil.widget.ace = git ${remotes:cs}/yafowil.widget.ace.git pushurl=${remotes:cs_push}/yafowil.widget.ace.git
yafowil.widget.array = git ${remotes:cs}/yafowil.widget.array.git pushurl=${remotes:cs_push}/yafowil.widget.array.git
yafowil.widget.autocomplete = git ${remotes:cs}/yafowil.widget.autocomplete.git pushurl=${remotes:cs_push}/yafowil.widget.autocomplete.git
yafowil.widget.chosen = git ${remotes:cs}/yafowil.widget.chosen.git pushurl=${remotes:cs_push}/yafowil.widget.chosen.git
yafowil.widget.cron = git ${remotes:cs}/yafowil.widget.cron.git pushurl=${remotes:cs_push}/yafowil.widget.cron.git
yafowil.widget.datetime = git ${remotes:cs}/yafowil.widget.datetime.git pushurl=${remotes:cs_push}/yafowil.widget.datetime.git
yafowil.widget.dict = git ${remotes:cs}/yafowil.widget.dict.git pushurl=${remotes:cs_push}/yafowil.widget.dict.git
#yafowil.widget.dynatree = git ${remotes:cs}/yafowil.widget.dynatree.git pushurl=${remotes:cs_push}/yafowil.widget.dynatree.git
yafowil.widget.image = git ${remotes:cs}/yafowil.widget.image.git pushurl=${remotes:cs_push}/yafowil.widget.image.git
yafowil.widget.location = git ${remotes:cs}/yafowil.widget.location.git pushurl=${remotes:cs_push}/yafowil.widget.location.git
yafowil.widget.multiselect = git ${remotes:cs}/yafowil.widget.multiselect.git pushurl=${remotes:cs_push}/yafowil.widget.multiselect.git
#yafowil.widget.recaptcha = git ${remotes:cs}/yafowil.widget.recaptcha.git pushurl=${remotes:cs_push}/yafowil.widget.recaptcha.git
yafowil.widget.richtext = git ${remotes:cs}/yafowil.widget.richtext.git pushurl=${remotes:cs_push}/yafowil.widget.richtext.git
yafowil.widget.select2 = git ${remotes:cs}/yafowil.widget.select2.git pushurl=${remotes:cs_push}/yafowil.widget.select2.git
yafowil.widget.slider = git ${remotes:cs}/yafowil.widget.slider.git pushurl=${remotes:cs_push}/yafowil.widget.slider.git
yafowil.widget.wysihtml5 = git ${remotes:cs}/yafowil.widget.wysihtml5.git pushurl=${remotes:cs_push}/yafowil.widget.wysihtml5.git
bda.intellidatetime = git ${remotes:bda}/bda.intellidatetime.git pushurl=${remotes:bda_push}/bda.intellidatetime.git
# py 3 only
#recaptcha-client = git ${remotes:bda}/recaptcha-client-1.0.6-py3.git pushurl=${remotes:bda_push}/recaptcha-client-1.0.6-py3.git
[testenv]
TESTRUN_MARKER = True
[test]
recipe = zc.recipe.testrunner
environment = testenv
eggs =
Pillow
yafowil[test]
yafowil.yaml
# yafowil.widget.alohaeditor
yafowil.widget.ace
yafowil.widget.array
yafowil.widget.autocomplete
yafowil.widget.chosen
yafowil.widget.cron
yafowil.widget.datetime
yafowil.widget.dict
# yafowil.widget.dynatree
yafowil.widget.image
yafowil.widget.location
yafowil.widget.multiselect
# yafowil.widget.recaptcha
yafowil.widget.richtext
yafowil.widget.select2
yafowil.widget.slider
yafowil.widget.wysihtml5
odict
plumber
node
defaults = ['--auto-color', '--auto-progress']
[profile]
recipe = zc.recipe.testrunner
eggs = ${test:eggs}
defaults = ['--auto-color', '--auto-progress', '--profile=cProfile']
[coverage]
recipe = collective.recipe.template
input = inline:
#!/bin/sh
./bin/test --coverage ../../coverage -v --auto-progress "$@"
output = ${buildout:directory}/bin/coverage
mode = 755
[pydev]
recipe = pb.recipes.pydev
eggs = ${test:eggs}