Ignore:
Timestamp:
25 Jun 2009, 10:03:53 (15 years ago)
Author:
uli
Message:

Ease use of test-coverage tools.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • waeup/branches/ulif-rewrite/buildout.cfg

    r4350 r4354  
    11[buildout]
    22develop = .
    3 parts = app data zopectl i18n test waeupdocs
     3parts = app data zopectl i18n test waeupdocs coverage-detect coverage-report
    44find-links = http://download.zope.org/distribution/
    55newest = false
     
    6262defaults = ['--tests-pattern', '^f?tests$', '-v']
    6363
     64# Collect test coverage data.
     65[coverage-detect]
     66recipe = zc.recipe.testrunner
     67eggs = waeup
     68defaults = ['--tests-pattern', '^f?tests$', '-v', '--coverage', 'coverage']
     69
     70# Create a coverage report.
     71# Make sure to run bin/coverage-detect to collect the data for the report
     72# first!
     73[coverage-report]
     74recipe = zc.recipe.egg
     75eggs = z3c.coverage
     76scripts = coverage
     77arguments = ('parts/coverage-detect/coverage', 'parts/coverage-detect/coverage/report')
     78
     79
     80
    6481# this section named so that the i18n scripts are called bin/i18n...
    6582[i18n]
     
    7592default.css =
    7693layout.html =
     94
Note: See TracChangeset for help on using the changeset viewer.