summaryrefslogtreecommitdiff
path: root/test/test_consumer_integration.py
diff options
context:
space:
mode:
authorDana Powers <dana.powers@gmail.com>2016-01-30 14:07:39 -0800
committerDana Powers <dana.powers@gmail.com>2016-01-30 14:07:39 -0800
commit47da03d90ff1e4225d927bfaa9965df23231732e (patch)
tree86cb99e5fd11e431b47a06886a24967b3bf247d7 /test/test_consumer_integration.py
parentc506c61364c2a6d796837a8c8259704655752ad5 (diff)
downloadkafka-python-47da03d90ff1e4225d927bfaa9965df23231732e.tar.gz
Skip MultiProcessConsumer integration tests
Diffstat (limited to 'test/test_consumer_integration.py')
-rw-r--r--test/test_consumer_integration.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_consumer_integration.py b/test/test_consumer_integration.py
index 5a578d4..6a86bf8 100644
--- a/test/test_consumer_integration.py
+++ b/test/test_consumer_integration.py
@@ -240,6 +240,7 @@ class TestConsumerIntegration(KafkaIntegrationTestCase):
self.assertEquals(set([0, 1]), set([pending_part1, pending_part2]))
consumer.stop()
+ @unittest.skip('MultiProcessConsumer deprecated and these tests are flaky')
def test_multi_process_consumer(self):
# Produce 100 messages to partitions 0 and 1
self.send_messages(0, range(0, 100))
@@ -251,6 +252,7 @@ class TestConsumerIntegration(KafkaIntegrationTestCase):
consumer.stop()
+ @unittest.skip('MultiProcessConsumer deprecated and these tests are flaky')
def test_multi_process_consumer_blocking(self):
consumer = self.consumer(consumer = MultiProcessConsumer)
@@ -288,6 +290,7 @@ class TestConsumerIntegration(KafkaIntegrationTestCase):
consumer.stop()
+ @unittest.skip('MultiProcessConsumer deprecated and these tests are flaky')
def test_multi_proc_pending(self):
self.send_messages(0, range(0, 10))
self.send_messages(1, range(10, 20))
@@ -303,6 +306,7 @@ class TestConsumerIntegration(KafkaIntegrationTestCase):
consumer.stop()
+ @unittest.skip('MultiProcessConsumer deprecated and these tests are flaky')
@kafka_versions('>=0.8.1')
def test_multi_process_consumer_load_initial_offsets(self):
self.send_messages(0, range(0, 10))
@@ -399,6 +403,7 @@ class TestConsumerIntegration(KafkaIntegrationTestCase):
consumer1.stop()
consumer2.stop()
+ @unittest.skip('MultiProcessConsumer deprecated and these tests are flaky')
@kafka_versions('>=0.8.1')
def test_multi_process_offset_behavior__resuming_behavior(self):
self.send_messages(0, range(0, 100))