capistrant commented on PR #18013: URL: https://github.com/apache/druid/pull/18013#issuecomment-2971363001
I'm trying to figure out why jacoco says I don't have line coverage on the first of the 2 changed lines in JodaStuff... the debugger definitely hits it when I set a break. Found this chatting with copilot. > This happens because JaCoCo tracks coverage at the bytecode level, not source lines. When a line always throws an exception, JaCoCo may not mark it as covered, even if your debugger hits it. This is a known limitation with JaCoCo and exception-throwing lines. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
