tile38/scripts/test.sh

12 lines
219 B
Bash
Raw Normal View History

#!/bin/bash
set -e
cd $(dirname "${BASH_SOURCE[0]}")/..
2019-11-18 20:56:41 +03:00
export CGO_ENABLED=0
export GO111MODULE=on
export GOFLAGS=-mod=vendor
cd tests && go test && cd ..
go test $(go list ./... | grep -v /vendor/ | grep -v /tests)