Conversation
`go test ./...` produces so much output that human eyes struggle to find broken tests. gotestsum produces much cleaner output and summaries of failures for users. Signed-off-by: Andy Doan <doanac@qti.qualcomm.com>
Member
Author
|
@vkhoroz - just a small quality of life improvement. It changes our pages and pages of output to find a single test failure into something like: |
vkhoroz
approved these changes
Jul 10, 2026
Comment on lines
+23
to
+26
| wget -O gotestsum.tgz https://github.com/gotestyourself/gotestsum/releases/download/v1.13.0/gotestsum_1.13.0_linux_amd64.tar.gz | ||
| tar -xf gotestsum.tgz | ||
| echo "524bb9d2639f87bdb76db4b32e3b09e0838eec8a5da73c4d30ea2bedc22cf1d7 gotestsum" | sha256sum --check | ||
|
|
Member
There was a problem hiding this comment.
So, there is no way to do this via go install <something>, right?
Member
Author
There was a problem hiding this comment.
You can download and build with go install gotest.tools/gotestsum@latest. I figured grabbing a binary would be slightly faster
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
go test ./...produces so much output that human eyes struggle to find broken tests. gotestsum produces much cleaner output and summaries of failures for users.