From aeca9b778bf989df3bcc79787e5e9478c28c7715 Mon Sep 17 00:00:00 2001 From: Pouryafard75 Date: Tue, 2 Apr 2024 02:42:23 -0400 Subject: [PATCH] Parallelize the test execution --- pom.xml | 9 +++++++++ src/test/resources/junit-platform.properties | 2 ++ 2 files changed, 11 insertions(+) create mode 100644 src/test/resources/junit-platform.properties diff --git a/pom.xml b/pom.xml index f7bd295223f..24d616b6bd4 100644 --- a/pom.xml +++ b/pom.xml @@ -137,6 +137,15 @@ + + org.apache.maven.plugins + maven-surefire-plugin + 3.0.0-M5 + + suites + true + + org.apache.maven.plugins maven-compiler-plugin diff --git a/src/test/resources/junit-platform.properties b/src/test/resources/junit-platform.properties new file mode 100644 index 00000000000..82de190bf77 --- /dev/null +++ b/src/test/resources/junit-platform.properties @@ -0,0 +1,2 @@ +junit.jupiter.execution.parallel.enabled = true +junit.jupiter.execution.parallel.mode.default = concurrent \ No newline at end of file