Skip to content

Commit

Permalink
chore: revert the update to LocalStack and testcontainers
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Feb 9, 2024
1 parent 541473a commit 4f47075
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ dependencies {
testImplementation "org.hamcrest:hamcrest-library:2.2"

// containers
testImplementation "org.testcontainers:junit-jupiter:1.19.5"
testImplementation "org.testcontainers:testcontainers:1.19.5"
testImplementation "org.testcontainers:localstack:1.19.5"
testImplementation "org.testcontainers:junit-jupiter:1.19.1"
testImplementation "org.testcontainers:testcontainers:1.19.1"
testImplementation "org.testcontainers:localstack:1.19.1"
testImplementation "com.amazonaws:aws-java-sdk-s3"
}

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/io/kestra/storage/s3/S3StorageTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class S3StorageTest extends StorageTestSuite {

@BeforeAll
static void startLocalstack() {
localstack = new LocalStackContainer(DockerImageName.parse("localstack/localstack:2.3.2"));
localstack = new LocalStackContainer(DockerImageName.parse("localstack/localstack:1.4.0"));
// some tests use a real flow with hardcoded configuration, so we have to fix the binding port
localstack.setPortBindings(java.util.List.of("4566:4566"));
localstack.start();
Expand Down

0 comments on commit 4f47075

Please sign in to comment.