third_party.pylibs.pylint.src/tox.ini
Claudiu Popa 3feb461aad Bring logilab-common's ureports into pylint.reporters.
With this change, we moved away from depending on logilab-common,
having in Pylint all the components that were used from logilab-common.
The API should be considered an implementation detail and can change at
some point in the future.
Closes issue #621.
2015-09-05 15:24:35 +03:00

19 lines
482 B
INI

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