mirror of https://github.com/tidwall/tile38.git
15 lines
336 B
Bash
Executable File
15 lines
336 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 tool cover -html=/tmp/coverage.out -o /tmp/coverage.html
|
|
echo "details: file:///tmp/coverage.html"
|
|
cd ..
|
|
|
|
go test $(go list ./... | grep -v /vendor/ | grep -v /tests)
|