From 2b0196527d60c94fab2a1d0754cbb512bb0ab9d4 Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Tue, 3 Jul 2018 21:48:35 +0200 Subject: [PATCH] fix coverall script --- testing/coverage/coverall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/coverage/coverall b/testing/coverage/coverall index 9db519d06..753da3436 100755 --- a/testing/coverage/coverall +++ b/testing/coverage/coverall @@ -28,7 +28,7 @@ if [ -f ${TEST_FILES[0]} ]; then test_package "" fi -for DIR in $(find * -type d -not -path "*.git*"); do +for DIR in $(find * -type d ! -path "*.git*" ! -path "*vendor*"); do TEST_FILES=($DIR/*_test.go) if [ -f ${TEST_FILES[0]} ]; then test_package $DIR