Skip to content

Instantly share code, notes, and snippets.

@mihailo-misic
Last active March 8, 2018 14:17
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 mihailo-misic/940559f569f54938bde1026c6b449153 to your computer and use it in GitHub Desktop.
Save mihailo-misic/940559f569f54938bde1026c6b449153 to your computer and use it in GitHub Desktop.
One-liner for running tests and coverage with go
### version >= Go 1.10
go test -coverprofile=c.out ./... && go tool cover -html=c.out
### version < Go 1.10
go test -coverprofile=c.out && go tool cover -html=c.out
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment