third_party.pylibs.pylint.src/tox.ini
Dmitry Pribysh 66c1d7ea3b Reduce number of false positives emitted by non-iterator-returned checker
By disabling checker for cases when there're multiple possible values infered
for node. This way we lose some of the inference power, but throw a lot less
false positives.

Fixes issue #695.
2015-11-07 19:09:00 +03:00

20 lines
501 B
INI

[tox]
# official list is
#envlist = py27, py32, py33, py34
envlist = py27, py34, pylint
[testenv:pylint]
deps =
hg+https://bitbucket.org/logilab/astroid@master
six
hg+https://bitbucket.org/logilab/pylint
commands = pylint -rn --rcfile={toxinidir}/pylintrc {envsitepackagesdir}/pylint
[testenv]
deps =
hg+https://bitbucket.org/logilab/astroid@master
six
pudb
commands = python -Wi -m unittest discover -s {envsitepackagesdir}/pylint/test/ -p {posargs:*test_*}.py
changedir = {toxworkdir}