summaryrefslogtreecommitdiff
path: root/buildout.cfg
blob: 906cbf2f542e85d9b3d4b85a7eb459b27dbcd84b (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 = py
eggs = ${test:eggs}