Skip to content

Converts `go test` output into a prettified HTML summary.

License

Notifications You must be signed in to change notification settings

anniyanvr/go-test-html

 
 

Repository files navigation

go-test-html

Build Status

Converts go test output into a prettified HTML summary.

Example HTML output

Installation

Go version 1.1 or higher is required. Install or update using the go get command:

go get -u github.com/ains/go-test-html

Usage

The go-test-html command takes in files containing the stdout and stderr from the go test command and the location of the HTML file to write.

go-test-html [gotest_stdout_file] [gotest_stderr_file] [output_file]

To produce the gotest_stdout_file and gotest_stderr_file without changing the output of your go test runs, use the following command.

go test ./... -v 2> >(tee [gotest_stderr_file]) | tee [gotest_stdout_file]

About

Converts `go test` output into a prettified HTML summary.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 67.3%
  • Groovy 17.0%
  • Python 15.7%