gocovr

command module
v0.9.0 Latest Latest
Warning

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

Go to latest
Published: Dec 19, 2018 License: MIT Imports: 14 Imported by: 0

README

gocovr Build Status

Very simple coverage reporting for golang, that supports coverage reporting on multiple packages!

Sample output:

$ gocovr test

Base: github.com/example/repo

File   Lines  Exec  Cover   Missing

a.go   66     59    89.4%   79-82,96-97,152-154,187-197
b.go   23     17    73.9%   37-42,63-66,70-72
c.go   23     18    78.3%   46-48,51-53,56-58,66-72
e.go   37     0     0.0%    31-108


TOTAL  170    115   67.6%

Usage

There are 2 ways to use gocovr:

  1. in place of golang's go test
  2. a replacement for opening a browser to view coverage
gocovr test

Running gocovr test will run go test with an added -coverprofile. Any arguments following test are transparently passed through to go test.

To run on multiple packages, just run something like gocovr test ./... github.com/some/package.

gocovr [cover.out]

Running gocovr will interpret a cover.out file by default; you may pass in any other file to parse.

Arguments

  • -showCovered: print files that have 100% coverage

Skipping

Sometimes you have files that you just don't need to test, and you want to skip them. To do this, add the following line, on its own line, anywhere in the file you want to skip:

//gocovr:skip-file

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

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