github-pr-coverage-status-plugin icon indicating copy to clipboard operation
github-pr-coverage-status-plugin copied to clipboard

Nice test coverage icon for your pull requests just from Jenkins

Results 39 github-pr-coverage-status-plugin issues
Sort by recently updated
recently updated
newest added

We see: ``` Unknown parameter(s) found for class type 'com.github.terma.jenkins.githubprcoveragestatus.CompareCoverageAction': jacocoCounterType ``` when using documented approach from [README.md](https://github.com/jenkinsci/github-pr-coverage-status-plugin/blob/master/README.md#how-to-use-with-jenkins-pipelines): ``` if ('SUCCESS' == currentBuild.currentResult) { currentBuild.result = 'SUCCESS' step([$class: 'CompareCoverageAction', jacocoCounterType:...

Hi maintainers! First, thanks for publishing this plugin. It's been a great help to my team's workflow. While using this plugin, I found the README documentation pretty unhelpful because it...

This plugin has an implicit dependency on jdk-tool for installing the Oracle JDK. Given Oracle's recent hostile licensing changes, it seems detrimental to have plugins depend on it. I think...

We did a gitHub+Jenkins+Sonar integration. After the execution of Jenkins job, Code Coverage in sonarqube is updated with 26.6%(jacoco-ut.exec). But in Build coverage, it is updated as 20.54%. From where...

This mostly boils down to removing PULL/ID from USER/REPO/PULL/ID. All the other changes are debugging messages so it's easier to follow the logic. This a possible fix for #39 and...

Configuration added sonarCoverageMetric parameter. Known parameters that work are: coverage, branch_coverage, and line_coverage. I do not have access any Cobertura or Clover envs, so only changed Jacoco to support it...

Hey, For numerous reasons we don't store the `jacocoTestReport.xml` in our GitHub repos, however it is generated during our jenkins process in a docker container. Would it be possible to...

Hi, Here is my scripted pipeline code: ``` def executeChecks() { if (params.SKIP_TESTS) { echo('Skipping Test stage') return } stage('Test') { executeCompatibilityChecks() executeUnitTests() } stage('Record Coverage') { if ( env.DEFAULT_BRANCH...

Thanks in advance for looking into this. I have atttached the xml file that the plugin is reading. In github it says that coverage is 48% but the actual coverage...