summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Pouzyrevsky <sandello@yandex-team.ru>2013-06-02 14:19:55 +0400
committerDavid Arthur <mumrah@gmail.com>2013-06-07 21:20:55 -0400
commit800a5125d72aab90cb982ddb140a2eba36f61a14 (patch)
treef02e79d79f5071f1354a5557ae1d015116f0df4d
parent60200c671b83838159f5b9b2ee9c4c5cbac0ec14 (diff)
downloadkafka-python-800a5125d72aab90cb982ddb140a2eba36f61a14.tar.gz
Update README.md
-rw-r--r--README.md18
1 files changed, 4 insertions, 14 deletions
diff --git a/README.md b/README.md
index 1571bde..8b57172 100644
--- a/README.md
+++ b/README.md
@@ -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
```