Closed Holek closed 3 years ago
Hey @Holek thank you very much for reporting this.
I'm trying to narrow down why this is happening, could you please try to run this again with go test -v ./... | gotestfmt
? The -v
might make the difference in my parsing.
@Holek I managed to track it down: without the -v
parameter the parser is missing the === RUN
line. If you add -v
it should work. Nevertheless, I think this should be fixed for less verbose output. You may also be interested in #1 which contains a description on how to add a less verbose output until this gets fixed.
Nice! I've managed to fix this in my project by using -v
flag. Looks good now! Thanks for a quick response and for work on #3 :)
Thanks, @Holek ! I'll add support for running without -v
so people have an easier time to make the output less verbose.
Hey @Holek, could you please try to use the binaries from this build? They should work without -v
now. https://github.com/haveyoudebuggedit/gotestfmt/actions/runs/1448047829
When
parser
encounters output from github.com/stretchr/testify/assert, it panics with:Example output from
go test -coverprofile=tmp/c.out ./...
: