We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
i'm trying to use richgo together with go-junit-report and use your recommendation but there is drawback i have found. With the command
go test ./... | tee >(richgo testfilter) | go-junit-report
your build will not fail (return status == 0). This is bit weird as with this step we don't have the option to stop build broken packages..
So far i have the following workaround
go test ./... | tee >(richgo testfilter) | go-junit-report; exit "$${PIPESTATUS[0]}"
Maybe this can be added to the docs?
The text was updated successfully, but these errors were encountered:
I don't have the confidence to describe them. I'm waiting your pull-request.
Sorry, something went wrong.
eloo
No branches or pull requests
Hi,
i'm trying to use richgo together with go-junit-report and use your recommendation but there is drawback i have found.
With the command
your build will not fail (return status == 0).
This is bit weird as with this step we don't have the option to stop build broken packages..
So far i have the following workaround
Maybe this can be added to the docs?
The text was updated successfully, but these errors were encountered: