2025-03-18 22:16:42 +02:00
|
|
|
pushd $(dirname "$0")/.. # run from root dir
|
|
|
|
|
2025-03-18 22:33:44 +02:00
|
|
|
rm -rf ./coverage
|
|
|
|
mkdir ./coverage/
|
2025-03-18 22:16:42 +02:00
|
|
|
|
|
|
|
go build -cover -o target/pilgrim_coverage main.go
|
|
|
|
|
|
|
|
chmod 777 ./target/pilgrim_coverage
|
2025-03-18 22:33:44 +02:00
|
|
|
GOCOVERDIR=coverage ./target/pilgrim_coverage
|
2025-03-18 22:16:42 +02:00
|
|
|
|
|
|
|
go tool covdata percent -i=coverage
|
|
|
|
|
|
|
|
popd # switch back to dir we started from
|