-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Reduce default log verbosity for itests #12565
Comments
2024-10-08:
|
Take a look at the output from any one of the itests; example. Or run There is already some machinery in place to quiet down the logging but the output is still verbose. More specifically, to see what assertion failed in a failing test one has to scroll through a lot of log lines to reach the assertion failure output, because a whole bunch of shut down logs continue to print after test ends. Ideally, we want the best of both worlds:
The solution discussed with the team and documented by Orjan is to:
This way, when a test fails the immediate output is simply the assertion failure. One can then download the full logs from CI to dig further into what caused it.
|
Ok I'm on it, you can assign me the issue |
The log output for itests is so verbose that in cases GitHub Actions UI recommends downloading the log to look at it as it refuses to render it all on the page. They make seeing the cause of failures cumbersome.
The text was updated successfully, but these errors were encountered: