Skip to content

Commit 64d6162

Browse files
committed
Disable KplKclIntegrationTests on Windows
It turns out that KPL doesn't support Windows any more. See: awslabs/amazon-kinesis-producer#284
1 parent ad8c476 commit 64d6162

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/test/java/org/springframework/integration/aws/kinesis/KplKclIntegrationTests.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@
2626
import org.junit.jupiter.api.AfterAll;
2727
import org.junit.jupiter.api.BeforeAll;
2828
import org.junit.jupiter.api.Test;
29+
import org.junit.jupiter.api.condition.DisabledOnOs;
2930
import org.junit.jupiter.api.condition.EnabledIfEnvironmentVariable;
31+
import org.junit.jupiter.api.condition.OS;
3032
import org.junit.jupiter.api.extension.ExtendWith;
3133

3234
import org.springframework.beans.factory.annotation.Autowired;
@@ -70,6 +72,7 @@
7072
*
7173
* @since 1.1
7274
*/
75+
@DisabledOnOs(OS.WINDOWS)
7376
@SpringJUnitConfig
7477
@EnabledIfEnvironmentVariable(named = EnvironmentHostNameResolver.DOCKER_HOST_NAME, matches = ".+")
7578
@ExtendWith(LocalstackDockerExtension.class)

0 commit comments

Comments
 (0)