Skip to content

Commit

Permalink
Try parallelism of 2.
Browse files Browse the repository at this point in the history
  • Loading branch information
tryangul committed Jan 11, 2025
1 parent 09132c7 commit 6e037c6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion buildSrc/src/main/groovy/airbyte-bulk-connector.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,11 @@ class AirbyteBulkConnectorPlugin implements Plugin<Project> {
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

Expand Down

0 comments on commit 6e037c6

Please sign in to comment.