summaryrefslogtreecommitdiff
path: root/tox.ini
blob: e1ba57b8ec1fd17032e492716271d7d165645114 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[tox]
# official list is
envlist = py27, py32, py33, py34
envlist = py27, py33, pylint
envlist = py27

[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}