Skip to content

Commit

Permalink
Make the integration tests more parallel - can probably be pushed eve…
Browse files Browse the repository at this point in the history
…n more but lets see how the action goes
  • Loading branch information
ml-james committed Sep 12, 2024
1 parent 7197e4e commit 9aafa4d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/integration-test/resources/junit-platform.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Enables parallel execution of tests
junit.jupiter.execution.parallel.enabled = true

# Configures the mode of parallel execution for test classes and methods
# Possible values: same_thread, concurrent
junit.jupiter.execution.parallel.mode.default = concurrent

# Configures the parallel mode for test methods within the same class
junit.jupiter.execution.parallel.mode.classes.default = concurrent

# Configures the number of parallel threads
junit.jupiter.execution.parallel.config.strategy = fixed
junit.jupiter.execution.parallel.config.fixed.parallelism = 10

0 comments on commit 9aafa4d

Please sign in to comment.