From 85a9cad1935f180fd90a4d33129ac7ad42ea4155 Mon Sep 17 00:00:00 2001 From: Mahmoud Ben Hassine Date: Wed, 13 Jul 2022 04:29:21 +0200 Subject: [PATCH] Temporarily disable KafkaItemReaderTests These tests are failing due to an invalid pom in spring-kafka-test Related issue: https://github.com/spring-projects/spring-kafka/pull/2342 --- .../batch/item/kafka/KafkaItemReaderTests.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/spring-batch-infrastructure/src/test/java/org/springframework/batch/item/kafka/KafkaItemReaderTests.java b/spring-batch-infrastructure/src/test/java/org/springframework/batch/item/kafka/KafkaItemReaderTests.java index d847fb4ba..b416b7e0a 100644 --- a/spring-batch-infrastructure/src/test/java/org/springframework/batch/item/kafka/KafkaItemReaderTests.java +++ b/spring-batch-infrastructure/src/test/java/org/springframework/batch/item/kafka/KafkaItemReaderTests.java @@ -1,5 +1,5 @@ /* - * Copyright 2019-2021 the original author or authors. + * Copyright 2019-2022 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -32,6 +32,7 @@ import org.apache.kafka.common.serialization.StringDeserializer; import org.junit.Before; import org.junit.BeforeClass; import org.junit.ClassRule; +import org.junit.Ignore; import org.junit.Test; import org.springframework.batch.item.ExecutionContext; @@ -54,6 +55,7 @@ import static org.junit.Assert.fail; * @author Mathieu Ouellet * @author Mahmoud Ben Hassine */ +@Ignore // FIXME https://github.com/spring-projects/spring-kafka/pull/2342 public class KafkaItemReaderTests { @ClassRule