We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00d2744 commit d753118Copy full SHA for d753118
build.gradle
@@ -72,6 +72,16 @@ jacocoTestReport {
72
html.required = true // For human-readable reports
73
csv.required = false
74
}
75
+
76
+ doLast {
77
+ // We extract the file path into a variable
78
+ def reportFile = reports.html.entryPoint
79
80
+ println "\n========================================================="
81
+ // Wrap the path in quotes to handle the space in "BookAPI 2" better
82
+ println "JaCoCo Report: file://${reportFile}"
83
+ println "=========================================================\n"
84
+ }
85
86
87
// ENFORCE 100% coverage with branch coverage
0 commit comments