This is an automated email from the ASF dual-hosted git repository.
fmariani pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new f459037483ef CAMEL-23194: Add JUnit 5 per-test timeout for camel-jms
tests
f459037483ef is described below
commit f459037483ef47336b5f4ebf87373a32b10351fa
Author: Croway <[email protected]>
AuthorDate: Wed Apr 1 16:49:26 2026 +0200
CAMEL-23194: Add JUnit 5 per-test timeout for camel-jms tests
Add a 10-minute default timeout for all JMS test methods via
junit-platform.properties. This prevents any individual hung
test from blocking the entire CI build indefinitely.
---
.../src/test/resources/junit-platform.properties | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/components/camel-jms/src/test/resources/junit-platform.properties
b/components/camel-jms/src/test/resources/junit-platform.properties
new file mode 100644
index 000000000000..31d0a5134e51
--- /dev/null
+++ b/components/camel-jms/src/test/resources/junit-platform.properties
@@ -0,0 +1,17 @@
+## ---------------------------------------------------------------------------
+## Licensed to the Apache Software Foundation (ASF) under one or more
+## contributor license agreements. See the NOTICE file distributed with
+## this work for additional information regarding copyright ownership.
+## The ASF licenses this file to You under the Apache License, Version 2.0
+## (the "License"); you may not use this file except in compliance with
+## the License. You may obtain a copy of the License at
+##
+## http://www.apache.org/licenses/LICENSE-2.0
+##
+## Unless required by applicable law or agreed to in writing, software
+## distributed under the License is distributed on an "AS IS" BASIS,
+## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+## See the License for the specific language governing permissions and
+## limitations under the License.
+## ---------------------------------------------------------------------------
+junit.jupiter.execution.timeout.default = 10m