annotate recipe.xml @ 3:9ac0ee86ec7c

Some cleanup to the recipe commands and reporters.
author cmlenz
date Sun, 22 May 2005 23:12:16 +0000
parents 0b2a3581c48d
children 196009657e5e
rev   line source
0
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
1 <?xml version="1.0"?>
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
2 <recipe description="My project">
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
3
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
4 <step id="build" title="Let Distutils build the python code">
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
5 <distutils command="build"/>
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
6 </step>
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
7
3
9ac0ee86ec7c Some cleanup to the recipe commands and reporters.
cmlenz
parents: 0
diff changeset
8 <step id="test" title="Unit tests"
9ac0ee86ec7c Some cleanup to the recipe commands and reporters.
cmlenz
parents: 0
diff changeset
9 description="Run unit tests and trace code coverage">
9ac0ee86ec7c Some cleanup to the recipe commands and reporters.
cmlenz
parents: 0
diff changeset
10 <distutils command="unittest"/>
9ac0ee86ec7c Some cleanup to the recipe commands and reporters.
cmlenz
parents: 0
diff changeset
11 <reports>
9ac0ee86ec7c Some cleanup to the recipe commands and reporters.
cmlenz
parents: 0
diff changeset
12 <unittest file="build/test-results.xml"/>
9ac0ee86ec7c Some cleanup to the recipe commands and reporters.
cmlenz
parents: 0
diff changeset
13 <trace summary="build/test-coverage.txt" coverdir="build/coverage"
9ac0ee86ec7c Some cleanup to the recipe commands and reporters.
cmlenz
parents: 0
diff changeset
14 include="trac*" exclude="*.tests.*"/>
9ac0ee86ec7c Some cleanup to the recipe commands and reporters.
cmlenz
parents: 0
diff changeset
15 </reports>
9ac0ee86ec7c Some cleanup to the recipe commands and reporters.
cmlenz
parents: 0
diff changeset
16 </step>
9ac0ee86ec7c Some cleanup to the recipe commands and reporters.
cmlenz
parents: 0
diff changeset
17
0
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
18 <step id="lint" title="Run Pylint"
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
19 description="Run Pylint to check for bad style and potential errors">
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
20 <make target="pylint"/>
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
21 <reports>
3
9ac0ee86ec7c Some cleanup to the recipe commands and reporters.
cmlenz
parents: 0
diff changeset
22 <pylint file="build/pylint-results.txt"/>
0
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
23 </reports>
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
24 </step>
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
25
3
9ac0ee86ec7c Some cleanup to the recipe commands and reporters.
cmlenz
parents: 0
diff changeset
26 <step id="dist" title="Package up distributions">
9ac0ee86ec7c Some cleanup to the recipe commands and reporters.
cmlenz
parents: 0
diff changeset
27 <distutils command="sdist"/>
0
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
28 </step>
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
29
0b2a3581c48d Import initial ''bitten'' source.
cmlenz
parents:
diff changeset
30 </recipe>
Copyright (C) 2012-2017 Edgewall Software