mirror of
https://github.com/minio/minio.git
synced 2024-12-26 23:25:54 -05:00
736d8cbac4
https://github.com/minio/console takes over the functionality for the future object browser development Signed-off-by: Harshavardhana <harsha@minio.io>
8 lines
132 B
Bash
Executable File
8 lines
132 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
for d in $(go list ./...); do
|
|
CGO_ENABLED=1 go test -v -tags kqueue -race --timeout 100m "$d"
|
|
done
|