Skip to content

Commit

Permalink
Disable Aws2KinesisTest on GitHub CI due to apache#6342
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnetherton committed Aug 12, 2024
1 parent 6576c7f commit 260ede2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
package org.apache.camel.quarkus.component.aws2.kinesis.it;

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

@DisabledIfEnvironmentVariable(named = "CI", matches = "true", disabledReason = "https://github.com/apache/camel-quarkus/issues/6342")
@QuarkusIntegrationTest
class Aws2KinesisIT extends Aws2KinesisTest {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@
import org.apache.camel.quarkus.test.support.aws2.BaseAWs2TestSupport;
import org.awaitility.Awaitility;
import org.jboss.logging.Logger;
import org.junit.jupiter.api.condition.DisabledIfEnvironmentVariable;
import org.testcontainers.containers.localstack.LocalStackContainer.Service;
import software.amazon.awssdk.services.s3.S3Client;

@DisabledIfEnvironmentVariable(named = "CI", matches = "true", disabledReason = "https://github.com/apache/camel-quarkus/issues/6342")
@QuarkusTest
@WithTestResource(Aws2TestResource.class)
class Aws2KinesisTest extends BaseAWs2TestSupport {
Expand Down

0 comments on commit 260ede2

Please sign in to comment.