https://kotlinlang.org logo
Title
p

pajatopmr

05/08/2023, 6:02 AM
Has anyone seen a comparison of Jacoco vs IntelliJ code coverage capabilities? I'm guessing IntelliJ is better but it does not work well in a CI/CD environment last time I checked.
c

christophsturm

05/08/2023, 7:45 AM
i think intellij coverage is just kover and that works fine on CI
p

pajatopmr

05/08/2023, 11:40 AM
Wow. That's good news. I think you are saying that Kover hides IntelliJ (or appropriate pieces of IntelliJ) such that when Kover is configured in Gradle to use IntelliJ, Kover will generate full results on a Github or Gitlab CI build.
In version 0.7.0-* it appears that Kover is no longer able to be configured with a choice of Jacoco vs IntelliJ. What's up with that?
o

Oliver.O

05/10/2023, 7:07 PM
Seems that the choice is still there: The migration doc says:
IntelliJ Engine was renamed to Kover Tool.
To use Kover Tool with default version need to call
kover {
    useKoverTool()
}
To use JaCoCo Tool with default version need to call
kover {
    useJacocoTool()
}