1
0
mirror of https://github.com/ceph/ceph-csi.git synced 2025-04-10 09:33:01 +00:00
ceph-csi/vendor/github.com/json-iterator/go/test.sh
2018-12-19 15:29:25 +01:00

13 lines
285 B
Bash
Executable File

#!/usr/bin/env bash
set -e
echo "" > coverage.txt
for d in $(go list ./... | grep -v vendor); do
go test -coverprofile=profile.out -coverpkg=github.com/json-iterator/go $d
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out
fi
done