
Picking up https://github.com/modern-go/reflect2/pull/2 which lazy initializes a map of all types which we don't use in k8s, saving memory & initialization time.
13 lines
321 B
Bash
Executable File
13 lines
321 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
echo "" > coverage.txt
|
|
|
|
for d in $(go list github.com/modern-go/reflect2-tests/... | grep -v vendor); do
|
|
go test -coverprofile=profile.out -coverpkg=github.com/modern-go/reflect2 $d
|
|
if [ -f profile.out ]; then
|
|
cat profile.out >> coverage.txt
|
|
rm profile.out
|
|
fi
|
|
done
|