diff --git a/bin/test b/bin/test index 65ed48a2a..a557f093c 100755 --- a/bin/test +++ b/bin/test @@ -2,7 +2,7 @@ echo "mode: count" > profile.cov fail=0 -for dir in $(find . -type f -name '*_test.go' | xargs -n1 dirname | sort -u); do +for dir in $(find . -type f -name '*_test.go' | grep -v '^./experimental/' | xargs -n1 dirname | sort -u); do output=$(mktemp cover.XXXXXXXXXX) if ! go test -tags netgo -covermode=count -coverprofile=$output $dir ; then fail=1