diff-coverage-gradle icon indicating copy to clipboard operation
diff-coverage-gradle copied to clipboard

Gradle plugin for computing code coverage on modified code

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

- The current method of ignoring instructions based on the number of code changes has issues. The current logic only ignores bytecode in LINENUMBER node blocks, leading to some unforeseen...

**Describe the bug** Java: openjdk 21. Gradle: 8.4

Synchronize the update to JDK21 for jacoco 0.8.11

**Describe the bug** FAILURE: Build failed with an exception. * What went wrong: Could not determine the dependencies of task ':diffCoverage'. > 'diffCoverageReport.jacocoExecFiles' file collection is empty. **Desktop (please complete...

**Describe the bug** When running a task like: ./gradlew clean testDebugUnitTestCoverage diffCoverage --no-build-cache And configuring where the location of the class files can be found. Diff Coverage will through an...

**Describe the bug** I could see two items for each Scala class in the HTMP report. One is correct and another is not. **Desktop (please complete the following information):** -...

**Describe the bug** The `diffSource.git.compareWith` configuration has no effect if the files have not been committed to git. If this is by design, it should be clearly documented. However, it...

**Describe the bug** When there are two java files in different module, that have same package and class name, the coverage is wrong e.g. - module A - com.example.Application -...

Consider adding support for https://docs.gradle.org/current/userguide/configuration_cache.html Current issue; https://docs.gradle.org/7.4.2/userguide/configuration_cache.html#config_cache:requirements:use_project_during_execution ``` 13 problems were found storing the configuration cache, 1 of which seems unique. - Task `:diffCoverage` of type `com.form.coverage.gradle.DiffCoverageTask`: invocation of...

What is the plugin id that I should use to include this plugin?? I am using this in my `build.gradle` file ``` plugins { id "jacoco" id "com.form.diff-coverage" version "0.9.0"...