mirror of https://github.com/tidwall/tile38.git
22 lines
470 B
Bash
Executable File
22 lines
470 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
cd $(dirname "${BASH_SOURCE[0]}")/..
|
|
|
|
export CGO_ENABLED=0
|
|
|
|
cd tests
|
|
go test -coverpkg=../internal/server -coverprofile=/tmp/coverage.out $GOTEST
|
|
|
|
|
|
# go test -coverpkg=../internal/... -coverprofile=/tmp/coverage.out \
|
|
# -v ./... $GOTEST
|
|
|
|
go tool cover -html=/tmp/coverage.out -o /tmp/coverage.html
|
|
echo "details: file:///tmp/coverage.html"
|
|
cd ..
|
|
|
|
if [[ "$GOTEST" == "" ]]; then
|
|
go test $(go list ./... | grep -v /vendor/ | grep -v /tests)
|
|
fi
|