From 1fcc40af30928c7c7c9702776c1807fa507358c9 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Tue, 13 Mar 2018 12:18:17 +0800 Subject: [PATCH] :green_heart: CI --- coverage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coverage.sh b/coverage.sh index 62d68cd..ec12a36 100755 --- a/coverage.sh +++ b/coverage.sh @@ -8,7 +8,7 @@ set -e echo "mode: count" > profile.cov # Standard go tooling behavior is to ignore dirs with leading underscors -for dir in $(find . -maxdepth 10 -not -path './.git*' -not -path '*/_*' -not -path './vendor' -type d); +for dir in $(find . -maxdepth 10 -not -path './.git*' -not -path '*/_*' -not -path './vendor*' -type d); do if ls $dir/*.go &> /dev/null; then go test -covermode=count -coverprofile=$dir/profile.tmp $dir