diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 8f8536244..db4aa825b 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -59,14 +59,14 @@ jobs: # Path to the cobertura file. path: target/jacoco-report/cobertura.xml # If files with 100% should be skipped from report. - skip_covered: false + skip_covered: true # Minimum allowed coverage percentage as an integer. minimum_coverage: 50 #TODO: Increase the coverage. Currently some of the service code is not testable # Show line rate as specific column. - show_line: true + show_line: false # Show branch rate as specific column. - show_branch: true + show_branch: false # Use class names instead of the filename show_class_names: true # Use a unique name for the report and comment - report_name: Unit Tests Coverage Report + report_name: Code Coverage Report