5959import org .junit .jupiter .api .AfterAll ;
6060import org .junit .jupiter .api .BeforeAll ;
6161import org .junit .jupiter .api .Test ;
62+ import org .junit .jupiter .api .Disabled ;
6263import org .junit .jupiter .api .TestInstance ;
6364import org .junit .jupiter .params .ParameterizedTest ;
6465import org .junit .jupiter .params .provider .ValueSource ;
@@ -112,6 +113,7 @@ void afterAll() {
112113 }
113114 }
114115
116+ @ Disabled ("Causes transitive failures on other pull requests" )
115117 @ Test
116118 void testProduceAndConsume () throws Exception {
117119 Properties properties = new Properties ();
@@ -157,6 +159,7 @@ void testProduceAndConsume() throws Exception {
157159 .containsExactly ("message0" , "message1" );
158160 }
159161
162+ @ Disabled ("Causes transitive failures on other pull requests" )
160163 @ ParameterizedTest
161164 @ ValueSource (classes = {
162165 BooleanSerializer .class ,
@@ -181,6 +184,7 @@ void testSerializers(Class valueSerializer) {
181184 }
182185 }
183186
187+ @ Disabled ("Causes transitive failures on other pull requests" )
184188 @ ParameterizedTest
185189 @ ValueSource (classes = {
186190 BooleanDeserializer .class ,
@@ -205,6 +209,7 @@ void testDeserializers(Class valueDeserializer) {
205209 }
206210 }
207211
212+ @ Disabled ("Causes transitive failures on other pull requests" )
208213 @ ParameterizedTest
209214 @ ValueSource (classes = {
210215 Serdes .BooleanSerde .class ,
@@ -230,6 +235,7 @@ void testListSerializers(Class serdeInnerClass) {
230235 }
231236 }
232237
238+ @ Disabled ("Causes transitive failures on other pull requests" )
233239 @ Test
234240 void testListDeserializers () {
235241 Map <String , Object > consumerProperties = new HashMap <>();
@@ -243,6 +249,7 @@ void testListDeserializers() {
243249 }
244250 }
245251
252+ @ Disabled ("Causes transitive failures on other pull requests" )
246253 @ Test
247254 void testRoundRobinPartitioner () {
248255 Map <String , Object > producerProperties = new HashMap <>();
@@ -255,6 +262,7 @@ void testRoundRobinPartitioner() {
255262 }
256263 }
257264
265+ @ Disabled ("Causes transitive failures on other pull requests" )
258266 @ ParameterizedTest
259267 @ ValueSource (classes = {
260268 RangeAssignor .class ,
@@ -272,6 +280,7 @@ void testPartitionAssignmentStrategy(Class assignor) {
272280 }
273281 }
274282
283+ @ Disabled ("Causes transitive failures on other pull requests" )
275284 @ Test
276285 void testSaslPlain () {
277286 Map <String , Object > consumerProperties = new HashMap <>();
@@ -286,6 +295,7 @@ void testSaslPlain() {
286295 }
287296 }
288297
298+ @ Disabled ("Causes transitive failures on other pull requests" )
289299 @ Test
290300 void testSaslScramSHA512 () {
291301 Map <String , Object > consumerProperties = new HashMap <>();
0 commit comments