mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 06:40:25 +08:00
11 lines
197 B
Bash
Executable File
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 ../... |