mirror of https://github.com/tidwall/tile38.git
8 lines
148 B
Bash
8 lines
148 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
cd $(dirname "${BASH_SOURCE[0]}")/..
|
||
|
|
||
|
cd tests && go test && cd ..
|
||
|
go test $(go list ./... | grep -v /vendor/ | grep -v /tests)
|