diff options
author | Ivan Pouzyrevsky <sandello@yandex-team.ru> | 2013-06-02 14:19:55 +0400 |
---|---|---|
committer | David Arthur <mumrah@gmail.com> | 2013-06-07 21:20:55 -0400 |
commit | 800a5125d72aab90cb982ddb140a2eba36f61a14 (patch) | |
tree | f02e79d79f5071f1354a5557ae1d015116f0df4d | |
parent | 60200c671b83838159f5b9b2ee9c4c5cbac0ec14 (diff) | |
download | kafka-python-800a5125d72aab90cb982ddb140a2eba36f61a14.tar.gz |
Update README.md
-rw-r--r-- | README.md | 18 |
1 files changed, 4 insertions, 14 deletions
@@ -101,16 +101,12 @@ pip install python-snappy # Tests -Some of the tests will fail if Snappy is not installed. These tests will throw -NotImplementedError. If you see other failures, they might be bugs - so please -report them! - ## Run the unit tests _These are broken at the moment_ ```shell -python -m test.unit +tox ./test/test_unit.py ``` ## Run the integration tests @@ -125,15 +121,9 @@ cd kafka-src ./sbt package ``` -Next start up a ZooKeeper server on localhost:2181 - -```shell -/opt/zookeeper/bin/zkServer.sh start -``` - -And finally run the tests. This will actually start up real Kafka brokers and send messages in using the -client. +And then run the tests. This will actually start up real local Zookeeper +instance and Kafka brokers, and send messages in using the client. ```shell -python -m test.integration +tox ./test/test_integration.py ``` |