We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d6d31b commit 748b186Copy full SHA for 748b186
1 file changed
build.gradle
@@ -262,18 +262,21 @@ tasks.withType(Test) {
262
}
263
264
265
-jacocoTestReport {
266
- dependsOn test
267
- dependsOn testNG
268
-
269
- reports {
270
- xml.required.set(true)
271
- csv.required.set(false)
272
- html.required.set(true)
+if (experiment == null || "".equals(experiment)) {
+ jacocoTestReport {
+ dependsOn test
+ dependsOn testNG
+
+ reports {
+ xml.required.set(true)
+ csv.required.set(false)
273
+ html.required.set(true)
274
+ }
275
276
277
+ check.dependsOn jacocoTestReport
278
279
-check.dependsOn jacocoTestReport
280
281
checkstyle {
282
configFile = project.file("config/checkstyle/checkstyle.xml")
0 commit comments