From 4b909f0ffec93908b0b9ccaf66d72b60da157425 Mon Sep 17 00:00:00 2001 From: Greg Brail Date: Tue, 31 Oct 2023 15:14:23 -0700 Subject: [PATCH] Turn forking off in gradle tests This was on previously because some tests didn't always close their Rhino Context, but now it looks like they all do. This speeds up the tests a lot, save for the MozillaSuiteTest which continues to be a slow one. --- build.gradle | 3 --- 1 file changed, 3 deletions(-) diff --git a/build.gradle b/build.gradle index 69f468e48e..6dd7321830 100644 --- a/build.gradle +++ b/build.gradle @@ -96,9 +96,6 @@ test { } maxHeapSize = "1g" testLogging.showStandardStreams = true - // Many tests do not clean up contexts properly. This makes the tests much - // more resilient at the expense of performance. - forkEvery = 1 maxParallelForks = 64 }