In local, running make test on the root folder results in:
GOPATH=/home/lhauspie/go go test -race -coverprofile=coverage.txt -covermode=atomic
? github.com/theodesp/go-heaps [no test files]
and Travis says:
$ make test
GOPATH=/home/travis/gopath go test -race -coverprofile=coverage.txt -covermode=atomic
? github.com/theodesp/go-heaps [no test files]
The command "make test" exited with 0.
It seems there is a problem with the -coverprofile=coverage.txt flag because of:
cannot use test profile flag with multiple packages
In local, running
make test
on the root folder results in:and Travis says:
It seems there is a problem with the
-coverprofile=coverage.txt
flag because of: