Skip to content
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

[quarkus] MEASURING THE COVERAGE OF YOUR TESTS #2017

Closed
yurake opened this issue Mar 2, 2021 · 1 comment
Closed

[quarkus] MEASURING THE COVERAGE OF YOUR TESTS #2017

yurake opened this issue Mar 2, 2021 · 1 comment
Assignees
Labels
cicd Continuous integration, deployment, and delivery feature_request A comment, message, or ask from a user to implement a specific feature java Pull requests that update Java code quarkus someone for quarkus

Comments

@yurake
Copy link
Owner

yurake commented Mar 2, 2021

Description

Related links

@yurake yurake added the feature_request A comment, message, or ask from a user to implement a specific feature label Mar 2, 2021
@yurake yurake self-assigned this Mar 2, 2021
@yurake yurake added the quarkus someone for quarkus label May 6, 2021
@yurake yurake added java Pull requests that update Java code cicd Continuous integration, deployment, and delivery labels Oct 25, 2022
@yurake
Copy link
Owner Author

yurake commented Feb 14, 2023

application/parent-pom/pom.xml

					<execution>
						<id>jacoco-check</id>
						<goals>
							<goal>check</goal>
						</goals>
						<phase>post-integration-test</phase>
						<configuration>
							<dataFile>${project.build.directory}/jacoco-quarkus.exec</dataFile>
							<rules>
								<rule>
									<element>BUNDLE</element>
									<limits>
										<limit>
											<counter>LINE</counter>
											<value>COVEREDRATIO</value>
											<minimum>0.80</minimum>
										</limit>
										<limit>
											<counter>BRANCH</counter>
											<value>COVEREDRATIO</value>
											<minimum>0.72</minimum>
										</limit>
									</limits>
								</rule>
							</rules>
						</configuration>
					</execution>

@yurake yurake closed this as completed Feb 14, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cicd Continuous integration, deployment, and delivery feature_request A comment, message, or ask from a user to implement a specific feature java Pull requests that update Java code quarkus someone for quarkus
Projects
None yet
Development

No branches or pull requests

1 participant