Skip to content

Commit 47da03d

Browse files
committed
Skip MultiProcessConsumer integration tests
1 parent c506c61 commit 47da03d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/test_consumer_integration.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ def test_simple_consumer_pending(self):
240240
self.assertEquals(set([0, 1]), set([pending_part1, pending_part2]))
241241
consumer.stop()
242242

243+
@unittest.skip('MultiProcessConsumer deprecated and these tests are flaky')
243244
def test_multi_process_consumer(self):
244245
# Produce 100 messages to partitions 0 and 1
245246
self.send_messages(0, range(0, 100))
@@ -251,6 +252,7 @@ def test_multi_process_consumer(self):
251252

252253
consumer.stop()
253254

255+
@unittest.skip('MultiProcessConsumer deprecated and these tests are flaky')
254256
def test_multi_process_consumer_blocking(self):
255257
consumer = self.consumer(consumer = MultiProcessConsumer)
256258

@@ -288,6 +290,7 @@ def test_multi_process_consumer_blocking(self):
288290

289291
consumer.stop()
290292

293+
@unittest.skip('MultiProcessConsumer deprecated and these tests are flaky')
291294
def test_multi_proc_pending(self):
292295
self.send_messages(0, range(0, 10))
293296
self.send_messages(1, range(10, 20))
@@ -303,6 +306,7 @@ def test_multi_proc_pending(self):
303306

304307
consumer.stop()
305308

309+
@unittest.skip('MultiProcessConsumer deprecated and these tests are flaky')
306310
@kafka_versions('>=0.8.1')
307311
def test_multi_process_consumer_load_initial_offsets(self):
308312
self.send_messages(0, range(0, 10))
@@ -399,6 +403,7 @@ def test_offset_behavior__resuming_behavior(self):
399403
consumer1.stop()
400404
consumer2.stop()
401405

406+
@unittest.skip('MultiProcessConsumer deprecated and these tests are flaky')
402407
@kafka_versions('>=0.8.1')
403408
def test_multi_process_offset_behavior__resuming_behavior(self):
404409
self.send_messages(0, range(0, 100))

0 commit comments

Comments
 (0)