mikepenz / action-junit-report

Reports junit test results as GitHub Pull Request Check
https://blog.mikepenz.dev
Apache License 2.0
321 stars 118 forks source link

Show raw output for passed test #1162

Closed amanank closed 2 days ago

amanank commented 2 months ago

Anyway, to show the raw test output for the passed test?

I have enabled

          include_passed: true
          detailed_summary: true
          annotate_notice: true

I get annotations without much information:

image

I want to be able to see the system-out from the test report xml file

image
mikepenz commented 2 months ago

The action uses the message or falls back to the error of a test failure.

System-out is not supported, and would usually also be too long to displayed. As you can see in the code: https://github.com/mikepenz/action-junit-report/blob/main/src/testParser.ts#L432-L449

the stacktrace is also truncated to 2 lines only.