mirror of https://github.com/gin-gonic/gin.git
14 lines
314 B
Bash
14 lines
314 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
echo "mode: count" > coverage.out
|
||
|
|
||
|
for d in $(go list ./... | grep -E 'gin$|binding$|render$'); do
|
||
|
go test -v -covermode=count -coverprofile=profile.out $d
|
||
|
if [ -f profile.out ]; then
|
||
|
cat profile.out | grep -v "mode:" >> coverage.out
|
||
|
rm profile.out
|
||
|
fi
|
||
|
done
|