gradle-print-coverage-plugin icon indicating copy to clipboard operation
gradle-print-coverage-plugin copied to clipboard

Scraps jacoco test reports and prints the code coverage to the console

Results 12 gradle-print-coverage-plugin issues
Sort by recently updated
recently updated
newest added

I was debugging some strange test behavior in a fairly large Java / Gradle project I've been working on, which I managed to isolate to this plugin. **Problem** The project...

When trying to update to gradle 8, there is an error that the plugin is not found: ``` org.gradle.api.plugins.UnknownPluginException: Plugin [id: 'de.jansauer.printcoverage', version: '2.0.0'] was not found in any of...

When upgrading my local gradle setup to version 3.7 I noticed this warning: ``` The Report.enabled property has been deprecated. This is scheduled to be removed in Gradle 8.0. Please...

We have in many projects unit tests and integration tests in different test sets. JaCoCo can handle this out of the box, but printCoverage only prints the coverage of the...

This is an extension of issue #1 for supporting multi module gradle project I tried to apply this plugin in my multi module gradle project from the root project's `build.gradle`....

enhancement

Since this plugin relies in the xml report being enabled for the jacoco plugin: ```gradle jacocoTestReport { reports { xml.enabled true } } ``` https://github.com/jansauer/gradle-print-coverage-plugin/blob/a121d160a1bcfb1f97918a9da77e79df337ffb72/src/main/groovy/de/jansauer/printcoverage/PrintCoverageTask.groovy#L25-L29 It should not fail if...

It would be possible to expose the file path **new File("${project.buildDir}/reports/jacoco/test/jacocoTestReport.xml")** as a property to the user customize this path? In my project, we had a whole bunch of features...

This PR implements task avoidance inside the plugin, because it always configures JaCoCo (and in consequence the `test` task), even if it is not used in the build. To reproduce,...

We have multiple sub-projects and want to display a separate message for the combined coverage. This pull-request adds configuration options for 'reportPath' and 'message' to customize both the xml-report from...

I had to add this settings to my build.gradle for this plugin to work: ```groovy jacocoTestReport { reports { xml.enabled true } } ``` otherwise I get the message `Jacoco...