From bce76497fee61c7f9362b4c0b696bee3b3e11f05 Mon Sep 17 00:00:00 2001 From: Marius Volkhart Date: Sun, 14 Mar 2021 11:31:18 +0000 Subject: [PATCH] Disable parallel tests on Gradle again Something is causing parallel tests to fail on CI. I haven't been able to track down what it is. The symptoms look similar to others where the cause was a test modifying the test-data directory. The integration tests also sometimes run into OutOfMemoryErrors when I run them in parallel. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1887631 13f79535-47bb-0310-9956-ffa450edef68 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 23232afad1..cd7d8a4b3a 100644 --- a/build.gradle +++ b/build.gradle @@ -167,7 +167,7 @@ subprojects { // this is necessary for JDK 9+ to keep formatting dates the same way as in previous JDK-versions systemProperties['java.locale.providers'] = 'JRE,CLDR' - systemProperties['junit.jupiter.execution.parallel.enabled'] = 'true' + systemProperties['junit.jupiter.execution.parallel.enabled'] = 'false' } jacoco {