1 Star 0 Fork 5

pakki/goim-nien

forked from 疯狂创客圈/goim-nien 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
codecov.sh 365 Bytes
一键复制 编辑 原始数据 按行查看 历史
Tony 提交于 2018-12-20 23:36 . exclude docs&scripts
#!/usr/bin/env bash
set -e
echo "" > coverage.txt
for d in $(go list ./... | grep -v cmd | grep -v docs | grep -v srcipts | grep -v benchmarks | grep -v examples); do
echo "testing for $d ..."
go test -coverprofile=profile.out -covermode=atomic $d
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out
fi
done
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/pakki/goim-nien.git
git@gitee.com:pakki/goim-nien.git
pakki
goim-nien
goim-nien
master

搜索帮助