forked from fourdigits/collective.cookiecuttr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
45 lines (38 loc) · 961 Bytes
/
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
[buildout]
extends =
https://raw.github.com/collective/buildout.plonetest/master/test-4.x.cfg
parts +=
test
coverage
report
report-xml
package-name = collective.cookiecuttr
package-extras = [test]
[versions]
zc.buildout = 1.6.3
[coverage]
recipe = zc.recipe.egg
eggs = coverage
initialization =
include = '--source=${buildout:directory}/src'
sys.argv = sys.argv[:] + ['run', include, 'bin/test', '--all']#
[report]
recipe = zc.recipe.egg
eggs = coverage
scripts = coverage=report
initialization =
sys.argv = sys.argv[:] + ['html', '-i']
[report-xml]
recipe = zc.recipe.egg
eggs = coverage
scripts = coverage=report-xml
initialization =
sys.argv = sys.argv[:] + ['xml', '-i']
[test]
recipe = collective.xmltestreport
defaults = ['-s', '${buildout:package-name}', '--auto-color', '--auto-progress']
eggs =
Plone
plone.app.upgrade
${buildout:package-name} ${buildout:package-extras}
${buildout:test-eggs}