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
It would be nice if the annotation provides a quick access to the test logs (system out) in addition to the existing "raw output". This would be very handy to troubleshoot failing tests, especially when the project has many and output is redirected into file to avoid polluting the build console.
Test logs are available under the <system-out> XML tag or in a separate -output.txt file when the surefire plugin is configured to redirect console output in a file.
The text was updated successfully, but these errors were encountered:
As annotations are not really meant to contain logs, which can get quite big, I recommend you archive any artefacts you need from the job and then you can download all the raw logs and outputs from the jobs. Currently it would just blow up in size and most likely being killed by annotation api size limits.
It would be nice if the annotation provides a quick access to the test logs (system out) in addition to the existing "raw output". This would be very handy to troubleshoot failing tests, especially when the project has many and output is redirected into file to avoid polluting the build console.
Test logs are available under the
<system-out>
XML tag or in a separate-output.txt
file when the surefire plugin is configured to redirect console output in a file.The text was updated successfully, but these errors were encountered: