comparison recipe.xml @ 0:0b2a3581c48d

Import initial ''bitten'' source.
author cmlenz
date Sun, 22 May 2005 15:49:22 +0000
parents
children 9ac0ee86ec7c
comparison
equal deleted inserted replaced
-1:000000000000 0:0b2a3581c48d
1 <?xml version="1.0"?>
2 <recipe description="My project">
3
4 <step id="build" title="Let Distutils build the python code">
5 <distutils command="build"/>
6 </step>
7
8 <step id="lint" title="Run Pylint"
9 description="Run Pylint to check for bad style and potential errors">
10 <make target="pylint"/>
11 <reports>
12 <pylint file="build/pylint.txt"/>
13 </reports>
14 </step>
15
16 <step id="test" title="Unit tests"
17 description="Run unit tests and trace code coverage">
18 <make target="test"/>
19 <reports>
20 <unittest file="build/test-results.xml"/>
21 <trace.py dir="build/coverage" include="trac*" exclude="*.tests.*"/>
22 </reports>
23 </step>
24
25 </recipe>
Copyright (C) 2012-2017 Edgewall Software