-
I'm adding your test logger to my repo template for spreading around a bunch more repos: But it's causing all non-Windows build agents to fail without any error message like this. Any idea why? |
Beta Was this translation helpful? Give feedback.
Answered by
AArnott
Dec 18, 2024
Replies: 1 comment 9 replies
-
No clue, there seems to not be any error message produced in the process. Does removing |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It turns out that your logger doesn't record annotations on mac/linux when
--collect "Code Coverage;Format=cobertura"
or--settings some.runsettings
is specified on the CLI as well. So in the end, I got it to work by adding a few more condition checks to avoid using those switches on GitHub Actions (while retaining them everywhere else).So yay, I'm unblocked and can use your logger. But it would sure be nice to find out why it (or the test runner?) is so fragile.