1
0
mirror of https://github.com/minio/minio.git synced 2025-03-12 12:40:10 -04:00

8 lines
150 B
Bash
Raw Normal View History

#!/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