Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • v2-alpha
  • 20-missing-tag-closure-on-anchors
  • 12-attributeerror-module-cgi-has-no-attribute-escape-in-python-3-8
  • matrix-report
  • v31.0.2
  • v31.0.1
  • v30.1.6
  • v026
  • v0.2.0
  • v0.1.0
  • v022
  • v021
13 results

junit2html

  • Clone with SSH
  • Clone with HTTPS
  • user avatar
    re #34 put module level consts back in parser.py
    Ian Norton authored
    b821eb1a
    History
    user avatar b821eb1a

    junit2html by Ian Norton inorton@gmail.com

    Hosted at https://gitlab.com/inorton/junit2html

    This is a simple self-contained python tool to produce a single html file from a single junit xml file.

    Basic Usage:

    $ junit2html JUNIT_XML_FILE [NEW_HTML_FILE]

    or

    $ python -m junit2htmlreport JUNIT_XML_FILE [NEW_HTML_FILE]

    eg:

    $ junit2html pytest-results.xml testrun.html

    or

    $ python -m junit2htmlreport pytest-results.xml

    Advanced Usage:

    Render Text summary of results

    junit2html mytest-results.xml --summary-matrix

    Render Text sumamry of results and exit non-zero on failures

    junit2html --summary-matrix ./tests/junit-unicode.xml --max-failures 1

    Installation

    $ sudo python setup.py install

    or

    $ sudo pip install junit2html

    Example Outputs

    You can see junit2html's own test report output content at: https://gitlab.com/inorton/junit2html/-/jobs/artifacts/master/browse?job=python36

    An an example of the "matrix" report output can be found at: https://gitlab.com/inorton/junit2html/-/jobs/artifacts/master/file/tests/matrix-example.html?job=python39

    About Junit

    Junit is a widely used java test framework, it happens to produce a fairly generic formatted test report and many non-java things produce the same files (eg py.test) or can be converted quite easily to junit xml (cunit reports via xslt). The report files are understood by many things like Jenkins and various IDEs.

    The format of junit files is described here: http://llg.cubic.org/docs/junit/

    Source and Releases

    Junit2html is maintained on gitlab at https://gitlab.com/inorton/junit2html

    The current master build status of junit2html is: pipeline status

    The current coverage status is: coverage report

    Releases are availible via Pypi using pip