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

[testenv:pylint]
deps =
  lazy-object-proxy
  six
  hg+https://bitbucket.org/logilab/astroid
  hg+https://bitbucket.org/logilab/pylint
commands = pylint -rn --rcfile={toxinidir}/pylintrc {envsitepackagesdir}/astroid

[testenv]
deps =
  lazy-object-proxy
  six

commands = python -m unittest discover -s {envsitepackagesdir}/astroid/tests -p "unittest*.py"