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