Skip to content

Instantly share code, notes, and snippets.

@ammario
Created September 2, 2016 16:27
golang test coverage html
#!/bin/bash
go test -coverprofile=coverage.out
go tool cover -html=coverage.out
@wang371758198
Copy link

wang371758198 commented Jan 17, 2020

When I run go tool cover -html=c.out in VS Code it returns this error:
Too many arguments
and when I run it in the windows terminal:
cover: open chtml.out: The system cannot find the file specified.

go test -cover -coverprofile chtml.out
go tool conver -html chtml.out

@joebowbeer
Copy link

go tool conver -html chtml.out

go tool cover -html chtml.out

@judewood
Copy link

In case anyone is seeing this issue. I needed to run 'go tool cover -html=coverage.out' in a bash terminal - it wouldn't work in my VSCode terminal on a Windows machine

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment