文件名称:go-acc:Golang(Go)的准确代码覆盖率报告
文件大小:21KB
文件格式:ZIP
更新时间:2024-06-11 06:37:34
Go
go-acc 用于在Golang中报告准确的代码覆盖率的工具。 它是以下bash脚本的跨平台(osx,windows,linux)改编版: touch ./coverage.tmp echo ' mode: atomic ' > coverage.txt go list ./... | grep -v /cmd | grep -v /vendor | xargs -n1 -I{} sh -c ' go test -race -covermode=atomic -coverprofile=coverage.tmp -coverpkg $(go list ./... | grep -v /vendor | tr "\n" ",") {} && tail -n +2 coverage.tmp >> coverage.txt || exit 255 ' && rm coverage.tmp 安
【文件预览】:
go-acc-master
----.gitignore(48B)
----go.mod(673B)
----.travis.yml(269B)
----CONTRIBUTING.md(6KB)
----LICENSE(11KB)
----go.sum(20KB)
----.github()
--------workflows()
----main.go(81B)
----README.md(1KB)
----cmd()
--------root.go(5KB)
----coverage.txt(13B)