blob: 0cd2ad4802614fdfa57ac2cb9b25a9700681e67f (
plain)
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
|
[buildout]
develop = .
parts =
test
test_c_hookable
python
coverage-test
coverage-report
unzip = true
[test]
recipe = zc.recipe.testrunner
eggs = zope.component [test,zcml,security,persistentregistry]
[coverage-test]
recipe = zc.recipe.testrunner
eggs = ${test:eggs}
defaults = ['--coverage', '../../coverage']
[coverage-report]
recipe = zc.recipe.egg
eggs = z3c.coverage
scripts = coverage=coverage-report
arguments = ('coverage', 'coverage/report')
[test_c_hookable]
recipe = zc.recipe.testrunner
eggs = zope.component [test,zcml,security,persistentregistry,hook]
[python]
recipe = zc.recipe.egg
interpreter = python
eggs = ${test:eggs}
|