Reconfigure the Gradle test task to fork every test class.

Resolves #623.
This commit is contained in:
John Blum
2022-10-03 16:12:25 -07:00
parent 608ba8fb30
commit 49e1ba8a60

View File

@@ -70,8 +70,10 @@ dependencies {
}
test {
forkEvery = 1
maxParallelForks = 8
//include "**/*Tests.java", "**/*Test.java"
maxParallelForks = 1
systemProperties['java.util.logging.config.file'] = "${project.projectDir}/src/test/resources/java-util-logging.properties"
systemProperties['gemfire.disableShutdownHook'] = "true"
@@ -79,4 +81,5 @@ test {
systemProperties['spring.profiles.active'] = "apache-geode"
useJUnitPlatform()
}