Skip to content

Instantly share code, notes, and snippets.

@itchyny
Created March 14, 2022 15:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itchyny/f804a8934825d82309089150cc0c3bc7 to your computer and use it in GitHub Desktop.
Save itchyny/f804a8934825d82309089150cc0c3bc7 to your computer and use it in GitHub Desktop.
#!/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