2012-09-05 18:54:23 +00:00
|
|
|
[buildout]
|
|
|
|
develop = .
|
2014-06-02 09:21:43 +00:00
|
|
|
parts =
|
2012-09-05 18:54:23 +00:00
|
|
|
test
|
|
|
|
py
|
|
|
|
coverage
|
|
|
|
|
|
|
|
[test]
|
|
|
|
recipe = zc.recipe.testrunner
|
2014-08-25 22:55:26 +00:00
|
|
|
eggs =
|
2012-09-05 18:54:23 +00:00
|
|
|
icalendar[test]
|
|
|
|
defaults = ['--auto-color', '--auto-progress']
|
|
|
|
|
|
|
|
[py]
|
|
|
|
recipe = zc.recipe.egg
|
|
|
|
interpreter = py
|
|
|
|
eggs = ${test:eggs}
|
|
|
|
|
|
|
|
[coverage]
|
|
|
|
recipe = collective.recipe.template
|
|
|
|
input = inline:
|
|
|
|
#!/bin/sh
|
|
|
|
./bin/test --coverage ../../coverage -v --auto-progress "$@"
|
|
|
|
output = ${buildout:directory}/bin/coverage
|
|
|
|
mode = 755
|