Skip to content

Commit

Permalink
[FLINK-26246][build][tests] Setup JUnit 5 infrastructure for parallel…
Browse files Browse the repository at this point in the history
… test execution
  • Loading branch information
zentol committed Apr 26, 2022
1 parent 30e9979 commit f7cc996
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 50 deletions.

This file was deleted.

This file was deleted.

9 changes: 9 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1603,6 +1603,15 @@ under the License.
<!--suppress MavenModelInspection -->
<test.randomization.seed>${test.randomization.seed}</test.randomization.seed>
<junit.jupiter.extensions.autodetection.enabled>true</junit.jupiter.extensions.autodetection.enabled>
<!-- Enabled the parallel test execution feature. -->
<!-- Tests and test classes can be enabled for concurrent execution using @Execution(ExecutionMode.CONCURRENT). -->
<junit.jupiter.execution.parallel.enabled>true</junit.jupiter.execution.parallel.enabled>
<!-- Tests are by default executed by a single thread; parallel execution is opt-in. -->
<junit.jupiter.execution.parallel.mode.default>same_thread</junit.jupiter.execution.parallel.mode.default>
<!-- Tests suites are by default executed by a single thread; parallel execution is opt-in. -->
<junit.jupiter.execution.parallel.mode.classes.default>same_thread</junit.jupiter.execution.parallel.mode.classes.default>
<!-- automatically adjust parallelism based on available cpu/processor cores-->
<junit.jupiter.execution.parallel.config.strategy>dynamic</junit.jupiter.execution.parallel.config.strategy>
</systemPropertyVariables>
</configuration>
<executions>
Expand Down

0 comments on commit f7cc996

Please sign in to comment.