Created
March 14, 2022 15:07
-
-
Save itchyny/f804a8934825d82309089150cc0c3bc7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -euo pipefail | |
cmdname="${BASH_SOURCE[0]##*/}" | |
temp=$(mktemp -t "$cmdname") | |
trap 'unlink "$temp"' EXIT | |
go test -cover -coverprofile="$temp" "$@" | |
go tool cover -html="$temp" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment