-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuildout.cfg
97 lines (81 loc) · 2.72 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
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
[buildout]
extends =
https://raw.github.com/collective/buildout.plonetest/master/test-5.x.cfg
https://raw.githubusercontent.com/plone/plone.app.robotframework/master/versions.cfg
package-name = plonesocial.suite
package-extras = [test]
test-eggs =
plonesocial.suite
plonesocial.microblog
plonesocial.activitystream
plonesocial.network
plonesocial.theme
parts +=
flake8
jenkins-test
coverage
extensions =
mr.developer
auto-checkout =
plone.app.blocks
plonesocial.activitystream
plonesocial.core
plonesocial.messaging
plonesocial.microblog
plonesocial.network
plonesocial.theme
ploneintranet.attachments
[sources]
plonesocial.microblog = git https://github.com/cosent/plonesocial.microblog.git
plonesocial.activitystream = git https://github.com/cosent/plonesocial.activitystream.git
plonesocial.core = git https://github.com/cosent/plonesocial.core.git
plonesocial.messaging = git https://github.com/cosent/plonesocial.messaging.git
plonesocial.network = git https://github.com/cosent/plonesocial.network.git
plonesocial.theme = git https://github.com/cosent/plonesocial.theme.git
plone.app.blocks = git https://github.com/plone/plone.app.blocks.git
ploneintranet.attachments = git https://github.com/ploneintranet/ploneintranet.attachments.git [email protected]:ploneintranet/ploneintranet.attachments.git
[instance]
eggs +=
Pillow
${buildout:auto-checkout}
zcml +=
${buildout:auto-checkout}
[test]
recipe = collective.xmltestreport
defaults = ['--auto-color', '--auto-progress', '--xml', '-v', '-s', 'plonesocial.suite']
eggs +=
Pillow
${buildout:auto-checkout}
zcml +=
${buildout:auto-checkout}
[versions]
setuptools=5.4.1
zc.buildout=2.2.5
[flake8]
recipe = zc.recipe.egg
eggs = flake8
${instance:eggs}
entry-points =
flake8=flake8.run:main
[jenkins-test]
recipe = collective.recipe.template
input = inline:
#!/bin/sh
# Remove old results
echo "Erase old coverage results."
bin/coverage erase
# Collect test coverage results for all packages
echo "Run test coverage analysis for all packages."
bin/coverage run -p --source=src bin/test $@ || exit 1
echo "Create test coverage report."
# Combine all package analysis
bin/coverage combine
# Generates a "coverage.xml" file that Jenkins can read and process from the
# ".coverage" file that the coverage report created.
bin/coverage xml -i -o ${buildout:directory}/parts/test/coverage.xml
echo "Test coverage report finished."
output = ${buildout:directory}/bin/jenkins-test
mode = 755
[coverage]
recipe = zc.recipe.egg
eggs = coverage