Edgewall Software

Changes between Version 1 and Version 2 of Recipe Commands


Ignore:
Timestamp:
Sep 12, 2005, 5:16:05 PM (19 years ago)
Author:
cmlenz
Comment:

More blanks filled in

Legend:

Unmodified
Added
Removed
Modified
  • Recipe Commands

    v1 v2  
    6969|| `target` || Name of the target to execute (defaults to “all”) ||
    7070|| `file` || Path to the Makefile that should be used. ||
    71 || `keep-going` || Whether `make` should try to continue even after encountering errors. ||
     71|| `keep-going` || Whether `make` should try to continue even after encountering errors. ||
    7272
    7373==== Examples ====
    7474
    75  '''TODO'''
     75{{{
     76 <c:make target="compile" file="build/Makefile" />
     77}}}
    7678
     79Runs the target “compile” of the `Makefile` located in the sub-directory `build`.
    7780
    7881----
     
    128131Extracts information from [http://docs.python.org/lib/module-unittest.html unittest] results recorded in an XML file.
    129132
     133  ''Note: This report must be used in conjunction with the `distutils` command [source:trunk/bitten/util/testrunner.py unittest] that comes with Bitten.''
     134
    130135==== Parameters ====
    131136
    132  '''TODO'''
     137|| Name || Description ||
     138|| `file` || Path to the XML results file, relative to the project source directory. ||
    133139
    134140==== Examples ====
    135141
    136  '''TODO'''
     142{{{
     143 <python:unittest file="build/test-results.xml"/>
     144}}}
     145
     146Extracts the test results from the XML file located at `build/test-results.xml`.
    137147
    138148=== `<python:trace>` ===
     
    142152==== Parameters ====
    143153
    144  '''TODO'''
     154|| Name || Description ||
     155|| `summary` || Path to the summary file written by `trace.py`, relative to the project source directory. ||
     156|| `coverdir` || Path to the directory containing the coverage files written by `trace.py`, relative to the project source directory. ||
     157|| `include` || List of glob patterns (separated by space) that specify which Python file should be included in the coverage report. ||
     158|| `exclude` || List of glob patterns (separated by space) that specify which Python file should be excluded from the coverage report. ||
    145159
    146160==== Examples ====
    147161
    148  '''TODO'''
     162{{{
     163 <python:trace summary="build/trace.out" coverdir="build/coverage" />
     164}}}
    149165
    150166=== `<python:pylint>` ===
     
    154170==== Parameters ====
    155171
    156  '''TODO'''
     172|| Name || Description ||
     173|| `file` || Path to the file containing the Pylint output, relative to the project source directory. ||
    157174
    158175==== Examples ====
    159176
    160  '''TODO'''
     177{{{
     178 <python:pylint file="build/pylint.out" />
     179}}}