File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 4949# tests.minheapsize=512m
5050# tests.jvmargs=-XX:+UseParallelGC -XX:TieredStopAtLevel=1 -XX:ActiveProcessorCount=1
5151#
52+ # If you want tests to produce an html report (which intellij provides a clickable link for
53+ # at the end of a failed build) set this to true, defaults to false to save a few seconds.
54+ #
55+ # tests.html=false
56+ #
5257# ################
5358# Gradle Daemon #
5459# ################
@@ -98,5 +103,8 @@ org.gradle.workers.max=@MAX_WORKERS@
98103# Maximum number of test JVMs forked per test task.
99104tests.jvms =@TEST_JVMS@
100105
106+ # By default skip html generation
107+ tests.html =false
108+
101109# Disable auto JVM provisioning (we don't use toolchains yet but want no surprises).
102110org.gradle.java.installations.auto-download =false
Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ allprojects {
153153 }
154154
155155 // Disable HTML report generation. The reports are big and slow to generate.
156- reports. html. required = false
156+ reports. html. required = Boolean . parseBoolean(providers . gradleProperty( " tests.html " ) . getOrElse( " false" ))
157157
158158 // Set up logging.
159159 testLogging {
You can’t perform that action at this time.
0 commit comments