mirror of
https://github.com/prymitive/karma
synced 2026-05-09 03:36:44 +00:00
10 lines
241 B
Bash
Executable File
10 lines
241 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
|
|
gocovmerge profile.* | grep -vE '^github.com/prymitive/karma/cmd/karma/bindata_assetfs.go:' > coverage.txt
|
|
rm -f profile.*
|
|
|
|
go tool cover -func coverage.txt | tail -n 1 | awk '{print $3}'
|