Files
opennotr/coverage.sh
2021-05-01 08:03:46 +08:00

12 lines
275 B
Bash
Executable File

#!/usr/bin/env bash
set -e
echo "" > coverage.txt
for d in $(go list ./... | grep -v pkg/logs); do
go test -race -coverprofile=profile.out -covermode=atomic $d -v
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out
fi
done