7528b3297c
Create separate packages for driver, s3 client and mounters.
8 lines
173 B
Bash
Executable file
8 lines
173 B
Bash
Executable file
#!/usr/bin/env bash
|
|
export MINIO_ACCESS_KEY=FJDSJ
|
|
export MINIO_SECRET_KEY=DSG643HGDS
|
|
|
|
mkdir -p /tmp/minio
|
|
minio server /tmp/minio &>/dev/null &
|
|
sleep 5
|
|
go test ./... -cover
|