-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathbase.cfg
107 lines (90 loc) · 2 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
[buildout]
extends = ldap.cfg
parts +=
zopeomelette
ploneomelette
coverage
test
test-coverage
releaser
code-analysis
vscode
develop = .
unzip = true
[code-analysis]
recipe = plone.recipe.codeanalysis
directory = ${buildout:directory}/src
flake8-ignore = C901,E241,E501
flake8-max-complexity = 20
clean-lines = False
imports = True
debug-statements = True
utf8-header = True
[instance]
recipe = plone.recipe.zope2instance
user = admin:admin
http-address = 8080
debug-mode = on
verbose-security = off
deprecation-warnings = on
blob-storage = var/blobstorage
eggs =
${python-ldap:egg}
pas.plugins.ldap
pdbpp
zcml =
pas.plugins.ldap
[plone]
recipe = plone.recipe.zope2instance
user = admin:admin
http-address = 8081
debug-mode = on
verbose-security = off
deprecation-warnings = on
blob-storage = var/blobstorage
eggs =
${python-ldap:egg}
pas.plugins.ldap[plone]
pdbpp
zcml =
pas.plugins.ldap
[releaser]
recipe = zc.recipe.egg
eggs = zest.releaser[recommended]
[test]
recipe = zc.recipe.testrunner
eggs =
${python-ldap:egg}
pas.plugins.ldap[test]
environment = testenv
defaults = ['--auto-color', '--auto-progress']
[coverage]
recipe = zc.recipe.egg
eggs = coverage
[test-coverage]
recipe = collective.recipe.template
input = inline:
#!/bin/bash
${buildout:directory}/bin/coverage run --source=${buildout:directory}/src/pas/plugins/ldap bin/test
${buildout:directory}/bin/coverage html
${buildout:directory}/bin/coverage report -m --fail-under=90
# Fail (exit status 1) if coverage returns exit status 2 (this happens
# when test coverage is below 100%.
output = ${buildout:directory}/bin/test-coverage
mode = 755
[zopeomelette]
recipe = collective.recipe.omelette
eggs =
${instance:eggs}
ignore-develop = true
[ploneomelette]
recipe = collective.recipe.omelette
eggs =
${plone:eggs}
ignore-develop = true
[vscode]
recipe = collective.recipe.vscode
eggs = ${test:eggs}
flake8-enabled = false
black-enabled = true
generate-envfile = true