Skip to content
Snippets Groups Projects
Commit 52d00c91 authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

add jacoco reports for other tests

parent 8cfcbdd0
No related branches found
No related tags found
2 merge requests!681Production Release | nshmp-haz,!680NSHM Unit Tests
......@@ -34,10 +34,13 @@ jacoco {
}
jacocoTestReport {
getExecutionData().setFrom(fileTree(buildDir).include("/jacoco/*.exec"))
reports {
xml.enabled true
html.enabled true
}
afterEvaluate {
classDirectories.from(files(classDirectories.files.collect {
fileTree(
......@@ -48,6 +51,10 @@ jacocoTestReport {
}
check.dependsOn jacocoTestReport
tasks.withType(Test) {
finalizedBy jacocoTestReport
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
options.compilerArgs.add("-parameters")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment