Why are stack traces enabled in CI (GitHub Actions)? #1277
-
I've been debugging without success why OClif is showing stack traces for errors in our CI pipeline. It breaks our snapshot tests that do not expect stack traces to be displayed. I'm resorting to using pnpm patch with added internal logging to figure this out. My presumption is that the logging comes from the Here's an example test failure from a recent run: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
Turns out debug is true, now trying to understand why that is. |
Beta Was this translation helpful? Give feedback.
So, OClif sets debug true if
<BIN_NAME>_DEBUG=true
is in the environment. This was not clear to me. If that's documented, I missed it. Is it?