mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
6 lines
90 B
Bash
6 lines
90 B
Bash
l=$(go list ./...)
|
|
for x in $l; do
|
|
echo "Testing package $x"
|
|
go test -race -v $x
|
|
done
|