Permalink
Cannot retrieve contributors at this time
12 lines (10 sloc)
273 Bytes
|
#!/usr/bin/env bash |
|
|
|
set -e |
|
echo "" > coverage.txt |
|
|
|
for d in $(go list ./... | grep -v vendor); do |
|
go test -v -race -coverprofile=profile.out -covermode=atomic $d |
|
if [ -f profile.out ]; then |
|
cat profile.out >> coverage.txt |
|
rm profile.out |
|
fi |
|
done |
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.