Merge pull request #3466 from ipfs/feat/cover/ignore-commands

Do not include core/commands in coverage report
This commit is contained in:
Jeromy Johnson 2016-12-04 23:30:47 -08:00 committed by GitHub
commit f8eca5e13e

View File

@ -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,cmd -- $(GOTFLAGS)
else
covertools_rule = $()
GOT = go test $(GOTFLAGS) ./...