third_party.pylibs.pylint.src/tox.ini
Claudiu Popa 60b5ced178 Basic travis support.
Some of the pylint errors were also removed.
2015-12-16 17:25:28 +02:00

17 lines
442 B
INI

[tox]
envlist = py27, py33, py34, py35, pypy, jython, pylint
skip_missing_interpreters = true
[testenv:pylint]
deps =
git+https://github.com/PyCQA/astroid@master
commands = pylint -rn --rcfile={toxinidir}/pylintrc {envsitepackagesdir}/pylint
[testenv]
deps =
git+https://github.com/PyCQA/astroid@master
commands = python -Wi -m unittest discover -s {envsitepackagesdir}/pylint/test/ -p {posargs:*test_*}.py
changedir = {toxworkdir}