mirror of
https://github.com/weaveworks/scope.git
synced 2026-05-06 01:08:03 +00:00
Don't test experimental stuff
This commit is contained in:
committed by
Tom Wilkie
parent
2ba9dab7bd
commit
578b6dfcba
2
bin/test
2
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
|
||||
|
||||
Reference in New Issue
Block a user