diff options
author | David Arthur <mumrah@gmail.com> | 2013-07-26 08:54:21 -0400 |
---|---|---|
committer | David Arthur <mumrah@gmail.com> | 2013-07-26 08:54:21 -0400 |
commit | c3bce13b845999483f7601836a2e7681dcd8ff10 (patch) | |
tree | 4e8cb083ed5c7f7be2537938f004f8869b9830ae | |
parent | e297a7a8c8f9de341b0e91346236455d12ae7f82 (diff) | |
download | kafka-python-c3bce13b845999483f7601836a2e7681dcd8ff10.tar.gz |
Show alternative way of running tests in README.md
-rw-r--r-- | README.md | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -175,6 +175,12 @@ _These are broken at the moment_ tox ./test/test_unit.py ``` +or + +```shell +python -m test.test_unit +``` + ## Run the integration tests First, checkout the Kafka source @@ -193,3 +199,9 @@ instance and Kafka brokers, and send messages in using the client. ```shell tox ./test/test_integration.py ``` + +or + +```shell +python -m test.test_integration +``` |