File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/integration-test/java/io/aiven/kafka/connect/transforms Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 23
23
distribution : ' temurin'
24
24
cache : gradle
25
25
- name : Build with Gradle
26
- run : ./gradlew build
26
+ run : ./gradlew build integrationTest
Original file line number Diff line number Diff line change 43
43
import org .testcontainers .containers .KafkaContainer ;
44
44
import org .testcontainers .junit .jupiter .Container ;
45
45
import org .testcontainers .junit .jupiter .Testcontainers ;
46
+ import org .testcontainers .utility .DockerImageName ;
46
47
47
48
import static org .junit .jupiter .api .Assertions .assertEquals ;
48
49
@@ -58,7 +59,7 @@ final class IntegrationTest {
58
59
private static File pluginsDir ;
59
60
60
61
@ Container
61
- private final KafkaContainer kafka = new KafkaContainer ()
62
+ private final KafkaContainer kafka = new KafkaContainer (DockerImageName . parse ( "confluentinc/cp-kafka:6.2.1" ) )
62
63
.withEnv ("KAFKA_AUTO_CREATE_TOPICS_ENABLE" , "false" );
63
64
64
65
private AdminClient adminClient ;
You can’t perform that action at this time.
0 commit comments