Skip to content

feat: add code coverage - #69

Open
mustyantsev wants to merge 16 commits into
mainfrom
feature/code-coverage
Open

feat: add code coverage#69
mustyantsev wants to merge 16 commits into
mainfrom
feature/code-coverage

Conversation

@mustyantsev

@mustyantsevmustyantsev commented Jun 5, 2024

Copy link
Copy Markdown
Contributor

addresses #54

@mustyantsev
mustyantsev requested review from a team as code ownersJune 5, 2024 11:51

@mkleenemkleene left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want to have a minimum set so that we fail the build if it's not met?

@mustyantsevmustyantsev linked an issue Jun 7, 2024 that may be closed by this pull request

@ttschampelttschampel left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ditto morgan's comment. we should add some rules to enforce on the coverage metrics

e.g were jacoco.line.coverage is a maven property with the min line coverage threshold for successful build

 <execution>
<id>check</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<rules>
<rule>
<element>BUNDLE</element>
<limits>
<limit>
<counter>LINE</counter>
<value>COVEREDRATIO</value>
<minimum>${jacoco.line.coverage}</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>

@mkleene
mkleene requested a review from a team as a code ownerApril 7, 2025 16:45
@sonarqubecloud

Copy link
Copy Markdown

@sonarqubecloud

Copy link
Copy Markdown

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Add code coverage

3 participants

@mustyantsev@mkleene@ttschampel