This is an automated email from the ASF dual-hosted git repository.

davsclaus 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 28181a5675f skip tests on platforms where they cannot run
28181a5675f is described below

commit 28181a5675ff9b9dbb2c9f44e847376bb81dc044
Author: Claus Ibsen <[email protected]>
AuthorDate: Tue Sep 30 07:42:31 2025 +0200

    skip tests on platforms where they cannot run
---
 .../aws2/transcribe/integration/Transcribe2PojoOperationIT.java        | 3 ++-
 .../aws2/transcribe/integration/Transcribe2SimpleOperationIT.java      | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git 
a/components/camel-aws/camel-aws2-transcribe/src/test/java/org/apache/camel/component/aws2/transcribe/integration/Transcribe2PojoOperationIT.java
 
b/components/camel-aws/camel-aws2-transcribe/src/test/java/org/apache/camel/component/aws2/transcribe/integration/Transcribe2PojoOperationIT.java
index 96dfe6cca3b..8ad65ebad86 100644
--- 
a/components/camel-aws/camel-aws2-transcribe/src/test/java/org/apache/camel/component/aws2/transcribe/integration/Transcribe2PojoOperationIT.java
+++ 
b/components/camel-aws/camel-aws2-transcribe/src/test/java/org/apache/camel/component/aws2/transcribe/integration/Transcribe2PojoOperationIT.java
@@ -14,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.apache.camel.component.aws2.transcribe.integration;
 
 import org.apache.camel.EndpointInject;
@@ -24,11 +23,13 @@ import org.apache.camel.ProducerTemplate;
 import org.apache.camel.builder.RouteBuilder;
 import org.apache.camel.component.mock.MockEndpoint;
 import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.DisabledOnOs;
 import software.amazon.awssdk.services.transcribe.model.*;
 
 import static org.junit.jupiter.api.Assertions.assertEquals;
 import static org.junit.jupiter.api.Assertions.assertNotNull;
 
+@DisabledOnOs(architectures = { "s390x", "ppc64le" })
 public class Transcribe2PojoOperationIT extends Aws2TranscribeBase {
 
     @EndpointInject
diff --git 
a/components/camel-aws/camel-aws2-transcribe/src/test/java/org/apache/camel/component/aws2/transcribe/integration/Transcribe2SimpleOperationIT.java
 
b/components/camel-aws/camel-aws2-transcribe/src/test/java/org/apache/camel/component/aws2/transcribe/integration/Transcribe2SimpleOperationIT.java
index 8f8715df83b..485105f0cde 100644
--- 
a/components/camel-aws/camel-aws2-transcribe/src/test/java/org/apache/camel/component/aws2/transcribe/integration/Transcribe2SimpleOperationIT.java
+++ 
b/components/camel-aws/camel-aws2-transcribe/src/test/java/org/apache/camel/component/aws2/transcribe/integration/Transcribe2SimpleOperationIT.java
@@ -14,7 +14,6 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.apache.camel.component.aws2.transcribe.integration;
 
 import org.apache.camel.EndpointInject;
@@ -26,11 +25,13 @@ import 
org.apache.camel.component.aws2.transcribe.Transcribe2Constants;
 import org.apache.camel.component.mock.MockEndpoint;
 import org.junit.jupiter.api.BeforeEach;
 import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.condition.DisabledOnOs;
 import software.amazon.awssdk.services.transcribe.model.*;
 
 import static org.junit.jupiter.api.Assertions.assertEquals;
 import static org.junit.jupiter.api.Assertions.assertNotNull;
 
+@DisabledOnOs(architectures = { "s390x", "ppc64le" })
 public class Transcribe2SimpleOperationIT extends Aws2TranscribeBase {
 
     @EndpointInject

Reply via email to