diff --git a/build/test.sh b/build/test.sh index 23b5679..4bdf474 100755 --- a/build/test.sh +++ b/build/test.sh @@ -19,11 +19,11 @@ set -o nounset set -o pipefail export CGO_ENABLED=0 +export GOFLAGS="-mod=vendor" TARGETS=$(for d in "$@"; do echo ./$d/...; done) echo "Running tests:" -go test -i -installsuffix "static" ${TARGETS} go test -installsuffix "static" ${TARGETS} echo