Very simple coverage reporting for golang.
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%
There are 2 ways to use gocovr:
- in place of golang's 
go test - a replacement for opening a browser to view coverage
 
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.
Running gocovr will interpret a cover.out file by default; you may pass in any other file to parse.
-showCovered: print files that have 100% coverage
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, before the first import statement.
//gocovr:skip-file