junit2html

command module
v0.4.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 27, 2024 License: MIT Imports: 3 Imported by: 0

README

junit2html

Convert Junit XML reports (junit.xml) into HTML reports using a single standalone binary.

  • Standalone binary.
  • Failed tests are top, that's what's important.
  • No JavaScript.
  • Look gorgeous.

Screenshot

screenshot

Install

Like jq, junit2html is a tiny (2.8Mb) standalone binary.

You can download it from the releases page.

Otherwise, you can use the installation script: https://raw.githubusercontent.com/stdedos/junit2html/main/install.sh

Usage

Here is an example that uses trap to always created the test report:

go install github.com/stdedos/junit2html@latest

trap 'go-junit-report < test.out > junit.xml && junit2html --xmlReports junit.xml > test-report.html' EXIT

go test -v -cover ./... 2>&1 > test.out

💡 Don't use pipes (i.e. |) in shell, pipes swallow exit codes. Use > which is POSIX compliant.

Test

How to test this locally:

cd examples/
go test -v -cover ./... 2>&1 >| test.out
go-junit-report < test.out >| junit.xml
go run ..  --xmlReports junit.xml >| test-report.html

Using glob patterns:

Sometimes there is a need to parse multiple XML files and generate a single HTML report. junit2html supports that by using standard glob expression.

# Explicit single file
junit2html --xmlReports "reports/junit.xml" > report.html

# Multiple files
junit2html --xmlReports "reports/junit.xml,reports/coverage.xml" > report.html

# Single glob pattern
junit2html --xmlReports "reports/*.xml" > report.html

# Multiple glob patterns
junit2html --xmlReports "reports/junit*.xml,reports/coverage*.xml" > report.html

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
pkg
cmd

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL