From 7828cab519139bd8158e7cd1eea24ff2b5e5d2a6 Mon Sep 17 00:00:00 2001 From: Aditya Mukerjee Date: Fri, 25 Jan 2019 14:05:24 -0500 Subject: [PATCH] Use gotest for Travis CI builds --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b0887618c..ee7cca3ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,7 @@ install: before_script: - go get -u github.com/ChimeraCoder/gojson/gojson - go get -d -v github.com/gogo/protobuf/protoc-gen-gogofaster + - go get github.com/rakyll/gotest - pushd $GOPATH/src/github.com/gogo/protobuf - git fetch - git checkout v0.5 @@ -48,4 +49,4 @@ before_script: - git diff-index --cached --exit-code HEAD script: - - go test -race -v -timeout 60s ./... + - gotest -race -v -timeout 60s ./...