소스 검색

fix coverall script

Darien Raymond 7 년 전
부모
커밋
2b0196527d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      testing/coverage/coverall

+ 1 - 1
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