Do not follow this link

~shabbyrobe/gocovmerge

Merge coverprofile results from multiple go cover runs
fa4f82cf — Blake Williams 1 year, 8 months ago
Vanity, update vinimum version
3e036491 — shabbyrobe 5 years ago
Fix error, go.mod
f6ea450b — shabbyrobe 6 years ago
Convert into library

refs

master
browse  log 

clone

read-only
https://git.sr.ht/~shabbyrobe/gocovmerge
read/write
git@git.sr.ht:~shabbyrobe/gocovmerge

You can also use your local clone with git send-email.

#gocovmerge

This is a fork of https://github.com/wadey/gocovmerge. It converts it into a library and introduces idiomatic error handling. The original command's functionality is provided by go.shabbyrobe.org/gocovmerge/cmd/gocovmerge.


gocovmerge takes the results from multiple go test -coverprofile runs and merges them into one profile.

#usage

gocovmerge [coverprofiles...]

gocovmerge takes the source coverprofiles as the arguments (output from go test -coverprofile coverage.out) and outputs a merged version of the files to standard out. You can only merge profiles that were generated from the same source code. If there are source lines that overlap or do not merge, the process will exit with an error code.

Do not follow this link