From 578b6dfcba5ec3d38ce170a6bccc7b4b4934adf2 Mon Sep 17 00:00:00 2001 From: Peter Bourgon Date: Mon, 18 May 2015 17:28:32 +0200 Subject: [PATCH] Don't test experimental stuff --- bin/test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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