-
Notifications
You must be signed in to change notification settings - Fork 75
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
#325 - Add code coverage support improve #326
#325 - Add code coverage support improve #326
Conversation
- Added support for code coverage GitHub action check as part of PR. - Used Absa fork of JaCoCo solution - with scala method filtering.
- Extend existing yml file to add code coverage measuring as part of them.
JaCoCo code coverage report - Scala 2.12 & Spark 3.2
|
JaCoCo code coverage report - Scala 2.13 & Spark 3.2
|
- Improved title name to avoid confusion about version meaning.
pom.xml
Outdated
<artifactId>jacoco-maven-plugin</artifactId> | ||
<version>${jacoco.version}</version> | ||
<version>0.8.9</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please add the version back to the variable ${jacoco.version} and use it here? Just for consistency.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in commit ede6725.
- Adding version variable for JaCoCo library.
Closes #325