minio/buildscripts/go-coverage.sh

13 lines
271 B
Bash
Raw Normal View History

2016-08-04 19:48:50 -04:00
#!/usr/bin/env bash
set -e
echo "" > coverage.txt
for d in $(go list ./... | grep -v browser); do
2018-10-17 23:18:53 -04:00
go test -v -coverprofile=profile.out -covermode=atomic "$d"
2016-08-04 19:48:50 -04:00
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out
fi
done