Files
deb-python-kafka/tox.ini
Dana Powers d107420bed Merge pull request #208 from dpkp/add_pylint_to_tox_ini
Use PyLint for static error checking
2014-08-26 18:24:31 -07:00

21 lines
421 B
INI

[tox]
envlist = lint, py26, py27, pypy
[testenv]
deps =
unittest2
nose
nose-timer
coverage
mock
python-snappy
commands =
nosetests {posargs:-v --with-id --with-timer --timer-top-n 10 --with-coverage --cover-erase --cover-package kafka}
setenv =
PROJECT_ROOT = {toxinidir}
[testenv:lint]
deps =
unittest2
mock
pylint
commands = pylint {posargs: -E --ignore=queue.py kafka test}