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
|