-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/go: test coverage output twice #32717
Comments
go test fmt -cover -v -count=1
go test fmt -cover -count=1
go test -cover -count=1
go test -cover -count=1 -v
|
It seems like the appropriate fix in the code base should be to account for the first condition listed in my previous comment. This is the only condition I can find that prints the coverage output line as well as including it in the summary. cmd/go/internal/test/test.go
I added the additional condition to this function and it appears to resolve the issue. |
I still need to contribute a test and ensure that this change won't affect the code in the linked ticket for the gotestsum repo. I intend to do this within the next few days as I'm currently obligated to address a previous issue I worked on. |
What version of Go are you using (
go version
)?What did you do?
What did you expect to see?
Coverage statements output only once, or one of the events identified differently from the other.
What did you see instead?
Coverage statements output twice.
Related to #23036, if one of the events could be identified differently the duplicate output would be easy to filter out.
I noticed that
go test -v
has the same behaviour, but i'm not sure why.The text was updated successfully, but these errors were encountered: