mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-03 15:00:26 +08:00
9 lines
105 B
Bash
9 lines
105 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
TAG=${1}
|
||
|
|
|
||
|
|
if [ -z "$TAG" ]; then
|
||
|
|
TAG="community"
|
||
|
|
fi
|
||
|
|
|
||
|
|
go test -v ../... -tags=${TAG}
|