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