10 lines
109 B
Bash
10 lines
109 B
Bash
|
|
#!/bin/sh
|
||
|
|
set -eu
|
||
|
|
cd "$(dirname "$0")/.."
|
||
|
|
|
||
|
|
if [ "$*" = "" ]; then
|
||
|
|
set ./...
|
||
|
|
fi
|
||
|
|
|
||
|
|
go test --timeout=30m "$@"
|