mirror of https://github.com/minio/minio.git
8 lines
136 B
Bash
8 lines
136 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
for d in $(go list ./... | grep -v browser); do
|
||
|
CGO_ENABLED=1 go test -v -race --timeout 20m "$d"
|
||
|
done
|