如何重写gocov命令去工具覆盖?

我有以下命令:

${GOPATH}/bin/gocov test ./... 2>test | ${GOPATH}/bin/gocov report

如果我使用这个命令会是什么样子go tool cover


Smart猫小萌
浏览 116回答 2
2回答

catspeake

由于go 1.10go tool coverage支持递归包绕过 go test ./... -coverprofile=coverage.out

蓝山帝景

go test -coverprofile=cover.out -coverpkg=server \     && go tool cover -html=cover.out
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go