我想使用 Coveralls 跟踪 go 项目的测试覆盖率,使用https://github.com/mattn/goveralls的集成参考说明cd $GOPATH/src/github.com/yourusername/yourpackage$ goveralls your_repos_coveralls_token但是,这只发布一个包的结果,而运行包又不起作用,因为最终运行会覆盖所有其他运行。有没有人想出如何覆盖多个包裹?
3 回答
PIPIONE
TA贡献1829条经验 获得超9个赞
我最终使用了这个脚本:
echo "mode: set" > acc.out
for Dir in $(find ./* -maxdepth 10 -type d );
do
if ls $Dir/*.go &> /dev/null;
then
go test -coverprofile=profile.out $Dir
if [ -f profile.out ]
then
cat profile.out | grep -v "mode: set" >> acc.out
fi
fi
done
goveralls -coverprofile=acc.out $COVERALLS
rm -rf ./profile.out
rm -rf ./acc.out
它基本上会找到路径中的所有目录,并分别为它们打印一个覆盖率配置文件。然后它将文件连接成一个大的配置文件并将它们发送给工作服。
- 3 回答
- 0 关注
- 284 浏览
添加回答
举报
0/150
提交
取消