diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | README.md | 5 | ||||
-rw-r--r-- | tox.ini | 2 |
3 files changed, 8 insertions, 1 deletions
@@ -6,3 +6,5 @@ dist MANIFEST env servers/*/kafka-bin +.coverage +.noseids @@ -190,6 +190,11 @@ pip install python-snappy tox ``` +## Run a single unit test +```shell +tox -e py27 -- -v --with-id 102 +``` + ## Run the integration tests The integration tests will actually start up real local Zookeeper @@ -8,6 +8,6 @@ deps = mock python-snappy commands = - nosetests --with-coverage --cover-erase --cover-package kafka [] + nosetests {posargs:-v --with-id --with-coverage --cover-erase --cover-package kafka} setenv = PROJECT_ROOT = {toxinidir} |