Files
EdgeNode/build/test.sh
2024-01-21 11:13:30 +08:00

11 lines
197 B
Bash
Executable File

#!/usr/bin/env bash
TAG=${1}
if [ -z "$TAG" ]; then
TAG="community"
fi
# reference: https://pkg.go.dev/cmd/go/internal/test
go clean -testcache
go test -timeout 10s -tags="${TAG}" -cover ../...