cert-manager/vendor/github.com/json-iterator/go/test.sh
James Munnelly 97d562b1c7 Bump json-iterator dependency
Signed-off-by: James Munnelly <james@munnelly.eu>
2019-02-08 13:30:17 +00: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