Add json-iterator dep, remove ugorji dep

This commit is contained in:
Tim Hockin
2017-08-29 17:29:21 -07:00
parent 5728b1970a
commit 86ef9d00f8
55 changed files with 8908 additions and 491 deletions

12
vendor/github.com/json-iterator/go/test.sh generated vendored Executable file
View File

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