Skip to content

Commit

Permalink
chore: disable SQS test for now as there is an issue with LocalStack
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Feb 9, 2024
1 parent 67661c5 commit 1c5f1a5
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 @@ -2,6 +2,7 @@

import io.kestra.plugin.aws.sqs.model.Message;
import io.kestra.plugin.aws.sqs.model.SerdeType;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.testcontainers.containers.localstack.LocalStackContainer;

Expand All @@ -10,6 +11,7 @@
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;

@Disabled("Issue with LocalStack, see https://github.com/localstack/localstack/issues/8267")
class PublishThenConsumeTest extends AbstractSqsTest {
@Test
void runText() throws Exception {
Expand Down
2 changes: 2 additions & 0 deletions src/test/java/io/kestra/plugin/aws/sqs/TriggerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import io.micronaut.context.ApplicationContext;
import jakarta.inject.Inject;
import jakarta.inject.Named;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.testcontainers.containers.localstack.LocalStackContainer;

Expand All @@ -27,6 +28,7 @@
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.notNullValue;

@Disabled("Issue with LocalStack, see https://github.com/localstack/localstack/issues/8267")
class TriggerTest extends AbstractSqsTest {
@Inject
private ApplicationContext applicationContext;
Expand Down

0 comments on commit 1c5f1a5

Please sign in to comment.