Metadata-Version: 1.0
Name: trace2html
Version: 0.1.0
Summary: HTML coverage report generator for trace.py
Home-page: http://champiland.homelinux.net/trace2html
Author: Olivier Grisel
Author-email: olivier.grisel@ensta.org
License: GNU GPL v2
Description: Generate XHTML reports from test coverage data collected with the trace module
        of the standard python library.
        
        Sample Usage
        ------------
        
        Generate coverage data in the 'counts' file with trace.py::
        
        $ /usr/lib/python2.4/trace.py -mc -C coverage_dir -f counts my_testrunner.py
        
        Write a report in directory 'coverage_dir' from data collected in 'counts'::
        
        $ trace2html.py -f counts -o coverage_dir
        $ firefox coverage_dir/index.html
        
        Load data from several files (the report is written to 'coverage_dir' by
        default)::
        
        $ trace2html.py -f file1 -f2 file2
        $ firefox coverage_dir/index.html
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
