mirror of
https://github.com/minio/minio.git
synced 2024-12-25 22:55:54 -05:00
8 lines
150 B
Bash
Executable File
8 lines
150 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
for d in $(go list ./... | grep -v browser); do
|
|
CGO_ENABLED=1 go test -v -tags kqueue -race --timeout 100m "$d"
|
|
done
|