remove parallel run for tests

This commit is contained in:
2021-04-08 03:03:04 +02:00
parent 1ec1c59c8c
commit eb399392c9

View File

@@ -197,7 +197,7 @@ val sourcesJar by tasks.registering(Jar::class) {
tasks.test {
useJUnit()
useJUnitPlatform()
systemProperty("junit.jupiter.execution.parallel.enabled", true)
// systemProperty("junit.jupiter.execution.parallel.enabled", true)
dependsOn(testSql)
finalizedBy(tasks.jacocoTestReport) // report is always generated after tests run
}