mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-11-22 04:46:04 +03:00
Use multithreading for unit test execution
Signed-off-by: Stefan Niedermann <info@niedermann.it>
This commit is contained in:
parent
04219ae638
commit
4aacec24ea
1 changed files with 6 additions and 0 deletions
|
@ -21,3 +21,9 @@ allprojects {
|
|||
maven { url "https://jitpack.io" }
|
||||
}
|
||||
}
|
||||
|
||||
subprojects {
|
||||
tasks.withType(Test) {
|
||||
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue