mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-05 05:04:04 -08:00
21e50a3f9d
Signed-off-by: jojohappy <sarahdj0917@gmail.com>
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
|