Skip to content

Commit

Permalink
Run metadata-io tests in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Oct 11, 2021
1 parent d054840 commit c726db7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions metadata-io/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ dependencies {
testCompile project(':test-models')
}

test {
// https://docs.gradle.org/current/userguide/performance.html
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
}

tasks.withType(Test) {
enableAssertions = false
}
Expand Down

0 comments on commit c726db7

Please sign in to comment.