From 8a2af1ec217e8a1676d5376a709e5684d34b68cb Mon Sep 17 00:00:00 2001 From: Derek Collison Date: Wed, 4 May 2016 11:23:48 -0700 Subject: [PATCH] don't test coverage on test --- scripts/cov.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cov.sh b/scripts/cov.sh index c4e05f22..a9b61f0b 100755 --- a/scripts/cov.sh +++ b/scripts/cov.sh @@ -7,7 +7,7 @@ go test -v -covermode=atomic -coverprofile=./cov/auth.out ./auth go test -v -covermode=atomic -coverprofile=./cov/conf.out ./conf go test -v -covermode=atomic -coverprofile=./cov/log.out ./logger go test -v -covermode=atomic -coverprofile=./cov/server.out ./server -go test -v -covermode=atomic -coverprofile=./cov/test.out ./test +#go test -v -covermode=atomic -coverprofile=./cov/test.out ./test go test -v -covermode=atomic -coverprofile=./cov/test2.out -coverpkg=./server ./test gocovmerge ./cov/*.out > acc.out rm -rf ./cov