d2/ci/test.sh
Alexander Wang 524c089a74 oss
Co-authored-by: Anmol Sethi <hi@nhooyr.io>
2022-11-03 06:54:49 -07:00

12 lines
158 B
Bash
Executable file

#!/bin/sh
set -eu
cd "$(dirname "$0")/.."
if [ "$*" = "" ]; then
set ./...
fi
if [ "${CI:-}" ]; then
export FORCE_COLOR=1
fi
go test --timeout=30m "$@"