Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 511 Bytes

README.rst

File metadata and controls

22 lines (14 loc) · 511 Bytes

Gocov HTML export

This is a simple helper tool for generating HTML output from axw/gocov.

Installation

Just type the following to install the program and its dependencies:

$ go get github.com/axw/gocov/gocov
$ go get github.com/matm/gocov-html

Usage

First generate coverage data with axw's gocov, then use it with gocov-html:

$ gocov test pkg > coverage.json
$ gocov-html coverage.json > pkg.html