From 8218dcb0c88fb4beee7af396f7bb12ed2de036ad Mon Sep 17 00:00:00 2001 From: Jakub Sztandera Date: Sun, 4 Dec 2016 23:56:09 +0100 Subject: [PATCH] Do not include core/commands in coverage report It is covered by sharness License: MIT Signed-off-by: Jakub Sztandera --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a10bd6a4c..9503c636d 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ export IPFS_REUSEPORT=false ifneq ($(COVERALLS_TOKEN), ) covertools_rule = covertools - GOT = overalls -project=github.com/ipfs/go-ipfs -covermode atomic -ignore=.git,Godeps,thirdparty,test -- $(GOTFLAGS) + GOT = overalls -project=github.com/ipfs/go-ipfs -covermode atomic -ignore=.git,Godeps,thirdparty,test,core/commands -- $(GOTFLAGS) else covertools_rule = $() GOT = go test $(GOTFLAGS) ./...