From 8221c6527b12311338e8a95695f4227ce00d290f Mon Sep 17 00:00:00 2001 From: Gert-Jan Timmer Date: Mon, 18 Jun 2018 10:56:33 +0200 Subject: [PATCH] Fix Travis-CI Fix Travis-CI for new project layout. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index a21c817..45f1dac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,9 +33,9 @@ before_install: fi script: - - GOOS=$(go env GOOS) GOARCH=$(go env GOARCH) go build -v -tags "${GOTAGS}" . + - GOOS=$(go env GOOS) GOARCH=$(go env GOARCH) go build -v -tags "${GOTAGS}" ./driver - | if [[ "${GOOS}" != "windows" ]]; then $HOME/gopath/bin/goveralls -repotoken 3qJVUE0iQwqnCbmNcDsjYu1nh4J4KIFXx - go test -race -v . -tags "${GOTAGS}" + go test -race -v ./driver -tags "${GOTAGS}" fi