-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
61 lines (50 loc) · 1.05 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
[buildout]
extends =
https://raw.githubusercontent.com/IMIO/buildout.pm/master/communes-dev.cfg
parts =
zeoserver
instance1
code-analysis
test
coverage
report
omelette
develop = .
eggs =
ipdb
imio.pm.wsclient
[instance1]
zcml +=
imio.pm.wsclient
[code-analysis]
recipe = plone.recipe.codeanalysis
directory = src/imio
flake8-ignore = E123,E124,E501,E126,E127,E128,W391
flake8-max-line-length = 119
# create bin/test command
[test]
recipe = zc.recipe.testrunner
defaults = ['--auto-color', '--auto-progress']
eggs =
ipdb
Products.PloneMeeting [test]
imio.pm.wsclient [test]
environment = testenv
initialization =
sys.argv = sys.argv[:] + ['-s', 'imio.pm.wsclient']
[testenv]
zope_i18n_compile_mo_files = true
# create bin/coverage commant
[coverage]
recipe = zc.recipe.egg
eggs = coverage
# create bin/report command
[report]
recipe = zc.recipe.egg
eggs = coverage
scripts = coverage=report
initialization =
sys.argv = sys.argv[:] + ['html', '-i']
[versions]
imio.pm.wsclient =
gnureadline = 8.1.2