From 807fe73db454d5087a80e7faf52f8cf486426e7d Mon Sep 17 00:00:00 2001 From: Michael Muller Date: Wed, 9 Jan 2019 11:13:48 -0500 Subject: [PATCH] Fork for every test to verify that this fixes the travis build. --- gradle/core/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gradle/core/build.gradle b/gradle/core/build.gradle index 0182ad928..ff8f839a9 100644 --- a/gradle/core/build.gradle +++ b/gradle/core/build.gradle @@ -459,6 +459,8 @@ test { exclude fragileTestPatterns exclude outcastTestPatterns + forkEvery 1 + // Sets the maximum number of test executors that may exist at the same time. maxParallelForks 5 }.dependsOn(fragileTest, outcastTest)