/
githubmirror
/
kubernetes
Обзор
Документация
Войти
/
githubmirror
/
kubernetes
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
vendor/github.com/json-iterator/go/test.sh
12 строк
285 B
Jordan Liggitt
generated: hack/update-vendor.sh
03 апр 2019, 17:19
03 апр 2019, 17:19
d0261b1
Код
Авторство
О чём код?
#!/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