mirror of
https://github.com/minio/minio.git
synced 2024-12-25 22:55:54 -05:00
b0deea27df
Also handle pretty formatted JSON documents.
13 lines
285 B
Bash
Executable File
13 lines
285 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
echo "" > coverage.txt
|
|
|
|
for d in $(go list ./... | grep -v browser); do
|
|
CGO_ENABLED=0 go test -v -coverprofile=profile.out -covermode=atomic "$d"
|
|
if [ -f profile.out ]; then
|
|
cat profile.out >> coverage.txt
|
|
rm profile.out
|
|
fi
|
|
done
|