diff --git a/buildSrc/src/main/groovy/airbyte-bulk-connector.gradle b/buildSrc/src/main/groovy/airbyte-bulk-connector.gradle index f7e1cfee923f..d9f4c64667f6 100644 --- a/buildSrc/src/main/groovy/airbyte-bulk-connector.gradle +++ b/buildSrc/src/main/groovy/airbyte-bulk-connector.gradle @@ -202,7 +202,11 @@ class AirbyteBulkConnectorPlugin implements Plugin { environment "AIRBYTE_CONNECTOR_INTEGRATION_TEST_RUNNER", "docker" jvmArgs = project.test.jvmArgs - systemProperties = project.test.systemProperties + systemProperties = project.test.systemProperties + [ + 'junit.jupiter.execution.parallel.enabled': 'true', + 'junit.jupiter.execution.parallel.config.strategy': 'fixed', + 'junit.jupiter.execution.parallel.config.fixed.parallelism': 2.toString() + ] maxParallelForks = project.test.maxParallelForks maxHeapSize = project.test.maxHeapSize