-
Notifications
You must be signed in to change notification settings - Fork 26
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
Option -follow
when using -format markdown
(Github Actions)
#77
Comments
Maybe, need to think about this one.. I got around this by outputting to a JSON file and then parsing that. See the example here: tparse/.github/workflows/ci.yml Lines 32 to 39 in e2da1ad
Which maintains the followed output in the CI, but the summary ignores that. |
Yes, that was my workaround :) But pretty sure you're also not happy about this one :D |
Ye, not ideal.
I don't think that'll work, or maybe I'm missing something. The test output is piped to Given both One solution I thought was adding a flag |
IMHO what could work is that |
What if instead of writing out to
This option points to a file, such as I could see this being useful outside of just github summary steps. |
So |
Yep,
I think this might work, will give this a go once I find some cycles. |
Why not send test all |
-follow
is a very useful option. However, when using it in conjunction with-format markdown
and>> $GITHUB_STEP_SUMMARY
to create nice job summaries, the output is of course not as expected.Would it make sense to exclude the
-follow
output from the generated-format
to avoid this issue?The text was updated successfully, but these errors were encountered: