go-acc
go-acc copied to clipboard
Accurate Code Coverage reporting for Golang (Go)
For several years, `go-acc` has me served very well in my admittedly simple case of aggregating coverage data from root as well as a non-root test runs. A big thank-you...
Currently, the README.md shows a seemingly outdated and somehow less useful help for a `--toggle` flag: ``` -t, --toggle Help message for toggle ``` A moderately recent `go-acc` doesn't support...
In the readme, the goal of `go-acc` is to replicate this shell command: ``` go list ./... | grep -v /cmd | grep -v /vendor | xargs -n1 -I{} sh...
In my project setup I have test packages like `api_test` which contain only tests for the package `api`. I want to execute these but I do not want to have...