1 Star 0 Fork 0

Araoms/heketi

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.travis-coverage 564 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
COVERFILE=packagecover.out
if [ ! -f "$COVERFILE" ]; then
echo "ERROR: coverfile missing!" >&2
echo " - Either the coverfile [$COVERFILE] was not generated yet or"
echo " the tests were run without coverage enabled."
echo " - This script can not continue without the coverfile."
exit 1
fi
if [ -n "$COVERALLS_TOKEN" ] ; then
# Send to coveralls.io
$HOME/gopath/bin/goveralls \
-coverprofile=$COVERFILE \
-service=travis-ci \
-repotoken $COVERALLS_TOKEN
fi
# Clean up
rm -f $COVERFILE > /dev/null 2>&1
exit 0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Araoms/heketi.git
git@gitee.com:Araoms/heketi.git
Araoms
heketi
heketi
master

搜索帮助