Don't test experimental stuff

This commit is contained in:
Peter Bourgon
2015-05-18 17:28:32 +02:00
committed by Tom Wilkie
parent 2ba9dab7bd
commit 578b6dfcba

View File

@@ -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