You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running go test -json | go-test-report works as expected; but running go test ./... -json | go-test-report -v does not.
Output
Using the -v flag for verbose output, I only see the test output. go-test-report does not generate any logs, which makes debugging incredibly complicated.
Since go test ./... is very common with modules that have subpackages, I think this is a must-have feature, and I'm unsure what's causing the failure. It may be due to an unexpected output; but since logging is non-existent, I can't debug this.
The text was updated successfully, but these errors were encountered:
Issue
Running
go test -json | go-test-report
works as expected; but runninggo test ./... -json | go-test-report -v
does not.Output
Using the
-v
flag for verbose output, I only see the test output.go-test-report
does not generate any logs, which makes debugging incredibly complicated.Since
go test ./...
is very common with modules that have subpackages, I think this is a must-have feature, and I'm unsure what's causing the failure. It may be due to an unexpected output; but since logging is non-existent, I can't debug this.The text was updated successfully, but these errors were encountered: