Replace unit tests with Localstack for AWS integrations (#2140)

This commit is contained in:
MatejNedic
2022-11-23 01:47:17 +01:00
committed by GitHub
parent 346a7ba56e
commit cbb3378bce
5 changed files with 934 additions and 592 deletions

View File

@@ -206,6 +206,18 @@
<artifactId>micrometer-tracing-bridge-brave</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>localstack</artifactId>
<scope>test</scope>
</dependency>
<!-- AWS SDK v1 is required by testcontainers-localstack -->
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk-core</artifactId>
<version>1.12.287</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.zipkin.brave</groupId>
<artifactId>brave-tests</artifactId>