diff options
author | Viktor Shlapakov <vshlapakov@gmail.com> | 2015-03-26 15:21:46 +0300 |
---|---|---|
committer | Dana Powers <dana.powers@rd.io> | 2015-03-30 15:02:44 -0700 |
commit | 32dd817aac4130a019339afac7ef52f2b9b7acd4 (patch) | |
tree | 5fc52b69e965615f47463b02629a8716f920978e /test/test_consumer_integration.py | |
parent | 92a3737a6b5267c7b643a9163c81b85ee0b0da58 (diff) | |
download | kafka-python-32dd817aac4130a019339afac7ef52f2b9b7acd4.tar.gz |
Skip these tests: no OffsetCommitRequest for 0.8.0
Diffstat (limited to 'test/test_consumer_integration.py')
-rw-r--r-- | test/test_consumer_integration.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_consumer_integration.py b/test/test_consumer_integration.py index 70d5109..fd62d9b 100644 --- a/test/test_consumer_integration.py +++ b/test/test_consumer_integration.py @@ -127,7 +127,7 @@ class TestConsumerIntegration(KafkaIntegrationTestCase): with self.assertRaises(OffsetOutOfRangeError): consumer.get_message() - @kafka_versions('all') + @kafka_versions("0.8.1", "0.8.1.1", "0.8.2.0") def test_simple_consumer_load_initial_offsets(self): self.send_messages(0, range(0, 100)) self.send_messages(1, range(100, 200)) @@ -269,7 +269,7 @@ class TestConsumerIntegration(KafkaIntegrationTestCase): consumer.stop() - @kafka_versions("all") + @kafka_versions("0.8.1", "0.8.1.1", "0.8.2.0") def test_multi_process_consumer_load_initial_offsets(self): self.send_messages(0, range(0, 10)) self.send_messages(1, range(10, 20)) |