Skip to content
Snippets Groups Projects
Commit 541bd8ef authored by dgelessus's avatar dgelessus
Browse files

Enable parallel test running

parent a8263c27
Branches
No related tags found
No related merge requests found
...@@ -41,6 +41,10 @@ application { ...@@ -41,6 +41,10 @@ application {
} }
test { test {
// Enable executing tests in parallel, as recommended here:
// https://docs.gradle.org/8.12/userguide/performance.html#execute_tests_in_parallel
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
testLogging { testLogging {
exceptionFormat = 'full' exceptionFormat = 'full'
showStandardStreams = true showStandardStreams = true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment