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

[test]
recipe = zc.recipe.testrunner
eggs = zope.security [test]

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

[python]
recipe = zc.recipe.egg
eggs = zope.security [untrustedpython]
interpreter = python

[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')