Mercurial > bitten > bitten-test
view recipe.xml @ 45:80bc0fae3ed1
Renamed {{{Configuration}}} to {{{BuildConfig}}}.
author | cmlenz |
---|---|
date | Thu, 23 Jun 2005 22:47:45 +0000 |
parents | 07053ecfb124 |
children | 82a9c225f073 |
line wrap: on
line source
<?xml version="1.0"?> <recipe description="My project" xmlns:c="bitten:bitten.build.ctools" xmlns:python="bitten:bitten.build.pythontools"> <step id="build" title="Let Distutils build the python code"> <python:distutils command="build"/> </step> <step id="test" title="Unit tests" description="Run unit tests and trace code coverage"> <python:distutils command="unittest"/> <reports> <python:unittest file="build/test-results.xml"/> <python:trace summary="build/test-coverage.txt" coverdir="build/coverage" include="trac*" exclude="*.tests.*"/> </reports> </step> <step id="lint" title="Run Pylint" description="Run Pylint to check for bad style and potential errors"> <c:make target="pylint"/> <reports> <python:pylint file="build/pylint-results.txt"/> </reports> </step> <step id="dist" title="Package up distributions"> <python:distutils command="sdist"/> </step> </recipe>