-
Notifications
You must be signed in to change notification settings - Fork 40
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
Wrong directory lookup for Java test classes #92
Comments
Scoverage does not cover Java sources, only Scala. For Java, there are multiple coverage tools. You can check my example project here to see how to use both Scoverage and Cobertura in the same build. |
Hi, I encounter the same issue, I think it's caused by scoverage does not pick up the protoc generated source files, any suggestions? To reproduce the error, clone https://github.com/housepower/spark-clickhouse-connector and run
|
I have a
build.gradle.kts
looking roughly like this:If I try to run
./gradlew :my-module:checkSCoverage
, it'll fail to find the generated proto classes as tries to look for them inbuild/classes/java/testScoverage
instead ofbuild/classes/java/test
.The text was updated successfully, but these errors were encountered: