-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.cfg
95 lines (77 loc) · 1.85 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
[buildout]
extends-cache = .cache
show-picked-versions = true
extensions =
mr.developer
sources-dir = mr-developer-src
index = https://pypi.python.org/simple/
parts =
instance
test
code-analysis
coverage
test-coverage
createcoverage
i18ndude
plone-helper-scripts
develop = .
[instance]
recipe = plone.recipe.zope2instance
user = admin:admin
http-address = 8080
environment-vars =
zope_i18n_compile_mo_files true
eggs =
Plone
collective.fhirpath [test]
[code-analysis]
recipe = plone.recipe.codeanalysis[recommended]
directory = ${buildout:directory}/src/collective
return-status-codes = False
flake8-max-complexity = 20
flake8-max-line-length = 88
flake8-ignore = Q000,W503,C812
[omelette]
recipe = collective.recipe.omelette
eggs = ${instance:eggs}
[test]
recipe = zc.recipe.testrunner
eggs = ${instance:eggs}
initialization =
os.environ['TZ'] = 'UTC'
defaults = ['-s', 'collective.fhirpath', '--auto-color', '--auto-progress']
[coverage]
recipe = zc.recipe.egg
eggs = coverage
[test-coverage]
recipe = collective.recipe.template
input = inline:
#!/bin/bash
export TZ=UTC
${buildout:directory}/bin/coverage run 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
[createcoverage]
recipe = zc.recipe.egg
eggs = createcoverage
[i18ndude]
recipe = zc.recipe.egg
eggs = i18ndude
[plone-helper-scripts]
recipe = zc.recipe.egg
eggs =
Products.CMFPlone
${instance:eggs}
interpreter = zopepy
scripts =
zopepy
plone-compile-resources
[versions]
# Don't use a released version of collective.fhirpath
collective.fhirpath =
zope.interface = 5.1.2
plone.api = 1.10.4