From 6619372bb822bb442b52cd0adcc1f88f50008242 Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Sun, 2 Jun 2019 10:40:44 +0200 Subject: [PATCH] Enable parallel unit test execution --- build.gradle | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index ff158d2c7..8645b5368 100644 --- a/build.gradle +++ b/build.gradle @@ -143,9 +143,7 @@ allprojects { test { useJUnitPlatform() - // Enable once the tests are fixed that sometimes break if - // they are executed in parallel (.e.g Socks5) - // maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1 + maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1 // Enable full stacktraces of failed tests. Especially handy // for environments like Travis.