2018-01-01 10:02:30 -08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -e
|
2019-02-10 08:53:18 -08:00
|
|
|
export GO111MODULE=on
|
2018-01-01 10:02:30 -08:00
|
|
|
echo "" > coverage.txt
|
|
|
|
|
|
|
|
for d in $(go list ./... | grep -v vendor); do
|
2018-01-02 07:21:45 -08:00
|
|
|
go test -race -coverprofile=profile.out -covermode=atomic ${d}
|
2018-01-01 10:02:30 -08:00
|
|
|
if [ -f profile.out ]; then
|
|
|
|
cat profile.out >> coverage.txt
|
|
|
|
rm profile.out
|
|
|
|
fi
|
2018-01-02 07:21:45 -08:00
|
|
|
done
|
|
|
|
|
2018-01-15 03:52:16 -08:00
|
|
|
if [ -f "./codecov.sh" ]; then
|
|
|
|
./codecov.sh
|
|
|
|
fi
|