jscoverage and pylint added to test buildout.

svn path=/plone.app.discussion/trunk/; revision=39218
This commit is contained in:
Timo Stollenwerk 2010-08-28 12:05:53 +00:00
parent 7aa09d45b2
commit 7f8522672c
1 changed files with 17 additions and 1 deletions

View File

@ -8,7 +8,9 @@ parts +=
test
coverage-test
coverage-report
jscoverage
pylint
[versions]
zope.schema = 3.6.0
Sphinx = 0.6.4
@ -29,3 +31,17 @@ recipe = zc.recipe.egg
eggs = z3c.coverage
scripts = coveragereport
arguments = ('coverage', 'report')
[jscoverage]
recipe = collective.recipe.template
input = inline:
#!/bin/sh
jscoverage-server -v --ip-address=0.0.0.0 --port=9999 --encoding=UTF-8 --document-root=plone/app/discussion/ --no-instrument=/tests
output = ${buildout:directory}/bin/jscoverage
mode = 755
[pylint]
recipe = zc.recipe.egg
eggs = logilab.pylintinstaller
entry-points = pylint=pylint.lint:Run
arguments = sys.argv[1:]