Skip to content

Commit

Permalink
try to include coverage of integration tests (htmlunit)
Browse files Browse the repository at this point in the history
  • Loading branch information
asolntsev committed Oct 27, 2016
1 parent 1868ddf commit dd90a1e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,21 @@ jacocoTestReport {
html.enabled true
html.destination "${buildDir}/reports/jacocoHtml"
}
executionData = files(
file("$project.buildDir/jacoco/test.exec"),
file("$project.buildDir/jacoco/htmlunit.exec")
)
}

coveralls {
jacocoReportPath = "${buildDir}/reports/jacoco/test/jacocoTestReport.xml"
}

tasks.coveralls {
dependsOn 'htmlunit'
onlyIf { System.env.'CI' }
}

apply plugin: 'info.solidsoft.pitest'

pitest {
Expand Down

0 comments on commit dd90a1e

Please sign in to comment.