mirror of
https://github.com/bitwarden/android.git
synced 2024-11-24 02:15:53 +03:00
Remove unneeded argument and add parallel forks for unit tests (#779)
This commit is contained in:
parent
41229d0324
commit
3e9852e9e7
2 changed files with 2 additions and 1 deletions
|
@ -276,7 +276,7 @@ tasks {
|
||||||
withType<Test> {
|
withType<Test> {
|
||||||
useJUnitPlatform()
|
useJUnitPlatform()
|
||||||
maxHeapSize = "4g"
|
maxHeapSize = "4g"
|
||||||
jvmArgs = listOf("-XX:MaxMetaspaceSize=512m")
|
maxParallelForks = Runtime.getRuntime().availableProcessors()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,3 +6,4 @@ android.useAndroidX=true
|
||||||
kotlin.code.style=official
|
kotlin.code.style=official
|
||||||
|
|
||||||
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
|
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
|
||||||
|
org.gradle.parallel=true
|
||||||
|
|
Loading…
Reference in a new issue