This is an automated email from the ASF dual-hosted git repository.
rgoers pushed a commit to branch release-2.x
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
The following commit(s) were added to refs/heads/release-2.x by this push:
new 123404b205 Do not allow parallel tests in a class
123404b205 is described below
commit 123404b2052515227dd152bcd6b5a571022de8a8
Author: Ralph Goers <[email protected]>
AuthorDate: Fri Nov 18 23:25:50 2022 -0700
Do not allow parallel tests in a class
---
log4j-api-test/pom.xml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/log4j-api-test/pom.xml b/log4j-api-test/pom.xml
index 0b23a52822..4a215b7794 100644
--- a/log4j-api-test/pom.xml
+++ b/log4j-api-test/pom.xml
@@ -183,7 +183,8 @@
<configurationParameters>
<!-- LOG4J2-2921: use parallel test execution by default -->
junit.jupiter.execution.parallel.enabled = true
- junit.jupiter.execution.parallel.mode.default = concurrent
+ junit.jupiter.execution.parallel.mode.default = same_thread
+ junit.jupiter.execution.parallel.mode.classes.default =
concurrent
</configurationParameters>
</properties>
<reuseForks>true</reuseForks>