Open masih opened 1 month ago
2024-10-08: From triage meeting:
@rjan90 @masih Can is there a way I can visualise the issue and pinpoint the places I need to make changes?
a way I can visualise the issue and pinpoint the places I need to make changes?
Take a look at the output from any one of the itests; example. Or run go test ./itests
locally.
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.
places I need to make changes?
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.