Skip to content

Commit

Permalink
Disable aws2-kinesis testing due to #6813
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnetherton committed Nov 21, 2024
1 parent ea04322 commit 94d38db
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 13 deletions.
2 changes: 2 additions & 0 deletions integration-test-groups/aws2/aws2-kinesis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
</dependencies>

<profiles>
<!-- TODO: https://github.com/apache/camel-quarkus/issues/6813
<profile>
<id>native</id>
<activation>
Expand Down Expand Up @@ -122,6 +123,7 @@
</plugins>
</build>
</profile>
-->
<profile>
<id>virtualDependencies</id>
<activation>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@
package org.apache.camel.quarkus.component.aws2.kinesis.it;

import io.quarkus.test.junit.QuarkusIntegrationTest;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.condition.DisabledIfEnvironmentVariable;

@Disabled("https://github.com/apache/camel-quarkus/issues/6813")
@DisabledIfEnvironmentVariable(named = "CI", matches = "true", disabledReason = "https://github.com/apache/camel-quarkus/issues/6342")
@QuarkusIntegrationTest
class Aws2KinesisIT extends Aws2KinesisTest {
Expand Down
17 changes: 4 additions & 13 deletions integration-tests/aws2-grouped/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,12 @@
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-aws2-ddb</artifactId>
</dependency>
<!-- TODO: https://github.com/apache/camel-quarkus/issues/6813
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-aws2-kinesis</artifactId>
</dependency>
-->
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-aws2-kms</artifactId>
Expand Down Expand Up @@ -152,6 +154,8 @@
<group-tests.dest.module.dir>${project.basedir}</group-tests.dest.module.dir>
<group-tests.concat.rel.paths>src/main/resources/application.properties,src/test/resources/META-INF/services/org.apache.camel.quarkus.test.support.aws2.Aws2TestEnvCustomizer</group-tests.concat.rel.paths>
<group-tests.class.name.prefix>${test.class.name.prefix}</group-tests.class.name.prefix>
<!-- TODO: https://github.com/apache/camel-quarkus/issues/4225 -->
<group-tests.files.excludes>aws2-kinesis</group-tests.files.excludes>
</properties>
</configuration>
</execution>
Expand Down Expand Up @@ -223,19 +227,6 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-aws2-kinesis-deployment</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.camel.quarkus</groupId>
<artifactId>camel-quarkus-aws2-kms-deployment</artifactId>
Expand Down

0 comments on commit 94d38db

Please sign in to comment.