1 Star 0 Fork 0

mamh-mixed/lazynpm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
test.sh 610 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jesse Duffield 提交于 2020-04-05 14:11 . copy over stuff from lazygit
#!/usr/bin/env bash
set -e
echo "" > coverage.txt
export GOFLAGS=-mod=vendor
use_go_test=false
if command -v gotest; then
use_go_test=true
fi
for d in $( find ./* -maxdepth 10 ! -path "./vendor*" ! -path "./.git*" ! -path "./scripts*" -type d); do
if ls $d/*.go &> /dev/null; then
args="-race -coverprofile=profile.out -covermode=atomic $d"
if [ "$use_go_test" == true ]; then
gotest $args
else
go test $args
fi
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out
fi
fi
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mamh-mixed/lazynpm.git
git@gitee.com:mamh-mixed/lazynpm.git
mamh-mixed
lazynpm
lazynpm
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385