upgrade dep json-iterator/go to fix #62742

This commit is contained in:
ceshihao
2018-04-24 05:44:54 +00:00
parent a53df4d905
commit 5528a4d298
107 changed files with 6108 additions and 3203 deletions

View File

@@ -4,7 +4,7 @@ set -e
echo "" > coverage.txt
for d in $(go list ./... | grep -v vendor); do
go test -coverprofile=profile.out $d
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