Skip to content

Instantly share code, notes, and snippets.

@YuanLiou
Created June 15, 2023 03:54
Show Gist options
  • Save YuanLiou/b7e2a87744e98604af062c89b83eac04 to your computer and use it in GitHub Desktop.
Save YuanLiou/b7e2a87744e98604af062c89b83eac04 to your computer and use it in GitHub Desktop.
Speed up gradle run unit test
tasks.withType<Test>().all {
testLogging {
events("passed", "skipped", "failed")
outputs.upToDateWhen { false }
showStandardStreams = true
}
maxParallelForks = Runtime.getRuntime().availableProcessors().div(2).coerceAtLeast(1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment