Decrease max heap size for test process on Windows

Test processes themselves don't do much
(RAM heavy work is done in Kotlin and Gradle daemons).
The default 1600m max heap size is unreasonably high
for copying test projects and checking output logs.
This commit is contained in:
Alexey Tsvetkov
2019-07-30 20:09:03 +03:00
parent 4db3dcc28f
commit efe62c983a
@@ -128,6 +128,8 @@ tasks.withType<Test> {
useAndroidSdk()
maxHeapSize = "512m"
testLogging {
// set options for log level LIFECYCLE
events("passed", "skipped", "failed", "standardOut")