jpyreport

Generate single HTML report from Junit xml reports


Keywords
junit, html, reports, generation
License
PDDL-1.0
Install
pip install jpyreport==1.0.0.post1

Documentation

jpyreport

Simple python tool to produce a single html report from several junit xml reports.

Usage:

$ jpyreport xml_reports_directory [-d file | -c cssfile | -t title | -g group_title | -s]

Options:
  -h, --help            show this help message and exit
  -d file, --dest=file  write report to file
  -c css, --css=css     css file to link
  -t title, --title=title
                        title for report, default: 'Unit Test Report'
  -g group_title, --group_title=group_title
                        title for test group column, default: 'Test Group /
                        Test Case'
  -s, --show_skipped    whether or not to show skipped tests

eg:

$ jpyreport ../reports/xml
$ jpyreport ../reports/xml report.html
$ jpyreport ../reports/xml report.html -t 'Behave Regression Report' -g 'Features / Scenarios' -s

Installation

$ pip install jpyreport

Demo

one

Comment

This is my first attempt to add smth as python package, so this module can be not stable for some time

Testing

To be continued...