diff --git a/.test-coverage b/.test-coverage index 045ec05..5694852 100755 --- a/.test-coverage +++ b/.test-coverage @@ -6,7 +6,7 @@ echo "mode: count" > profile.cov FAIL=0 # Standard go tooling behavior is to ignore dirs with leading underscors -for dir in $(find . -maxdepth 10 -not -path './.git*' -not -path '*/_*' -type d); +for dir in $(find . -maxdepth 10 -not -path './ssh' -not -path './.git*' -not -path '*/_*' -type d); do if ls $dir/*.go &> /dev/null; then go test -p 1 -v -covermode=count -coverprofile=profile.tmp $dir || FAIL=$?