pki/vendor/github.com/json-iterator/go/test.sh
Paul Lecuq d5159b447a
All checks were successful
continuous-integration/drone/push Build is passing
updated dependencies
2021-08-30 20:04:15 +02:00

13 lines
285 B
Bash

#!/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