aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorMarius Volkhart <mariusvolkhart@apache.org>2021-03-14 11:31:18 +0000
committerMarius Volkhart <mariusvolkhart@apache.org>2021-03-14 11:31:18 +0000
commitbce76497fee61c7f9362b4c0b696bee3b3e11f05 (patch)
treeb5950d5bdf1d7d5810a7245a03a224056cf68b64 /build.gradle
parent677ae9b8b9a61d642f8f0235e42ac6eaaf113ca0 (diff)
downloadpoi-bce76497fee61c7f9362b4c0b696bee3b3e11f05.tar.gz
poi-bce76497fee61c7f9362b4c0b696bee3b3e11f05.zip
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
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle2
1 files changed, 1 insertions, 1 deletions
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 {