107c1cd
1 2 3 4 5 6 7 8 9 10
set -ev if [[ "$1" == "goveralls" ]]; then echo "Testing with goveralls..." go get github.com/mattn/goveralls $HOME/gopath/bin/goveralls -service=travis-ci else echo "Testing with go test..." go test -v ./... fi