summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 314b271cddab808289b0719f52e82543e7d71dd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[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}