From 9bfc2429412365060b5279476fcba4414990737a Mon Sep 17 00:00:00 2001 From: spencergibb Date: Tue, 6 Aug 2024 14:18:39 -0400 Subject: [PATCH] Disables tests --- .../schema/registry/server/SchemaRegistryServerAvroTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/schema-registry/spring-cloud-stream-schema-registry-server/src/test/java/org/springframework/cloud/stream/schema/registry/server/SchemaRegistryServerAvroTests.java b/schema-registry/spring-cloud-stream-schema-registry-server/src/test/java/org/springframework/cloud/stream/schema/registry/server/SchemaRegistryServerAvroTests.java index 5704c31ca..5ff8fc294 100644 --- a/schema-registry/spring-cloud-stream-schema-registry-server/src/test/java/org/springframework/cloud/stream/schema/registry/server/SchemaRegistryServerAvroTests.java +++ b/schema-registry/spring-cloud-stream-schema-registry-server/src/test/java/org/springframework/cloud/stream/schema/registry/server/SchemaRegistryServerAvroTests.java @@ -30,6 +30,7 @@ import java.util.stream.Stream; import org.apache.avro.Schema.Parser; import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; @@ -70,6 +71,7 @@ import static org.springframework.test.annotation.DirtiesContext.ClassMode.AFTER */ @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT, properties = "spring.main.allow-bean-definition-overriding=true") @DirtiesContext(classMode = AFTER_EACH_TEST_METHOD) +@Disabled class SchemaRegistryServerAvroTests { private static final String AVRO_FORMAT_NAME = "avro";