summaryrefslogtreecommitdiff
path: root/buildout.cfg
blob: b837e2280820fbccdb1ec43d2e3d51d4f26bd408 (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
[buildout]
develop = .
parts =
    test
    python
    coverage-test
    coverage-report

[test]
recipe = zc.recipe.testrunner
eggs =
    zope.security [test,zcml,pytz]

[python]
recipe = zc.recipe.egg
eggs =
    zope.security [test,zcml,pytz,untrustedpython]
interpreter = py

[coverage-test]
recipe = zc.recipe.testrunner
eggs =
    zope.security [test]
defaults = ['--coverage', '../../coverage']

[coverage-report]
recipe = zc.recipe.egg
eggs =
    z3c.coverage
scripts = coverage=coverage-report
arguments = ('coverage', 'coverage/report')