summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-12-14 17:56:33 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2015-12-16 17:25:28 +0200
commit60b5ced178bb7cf1ea1ebacd81f9bdc37c29d707 (patch)
tree9e51a856815524937d20839c93d3184572d48154 /tox.ini
parente7c61846dd0b1e9adc2ec1f5d8c03e733deb1410 (diff)
downloadpylint-git-60b5ced178bb7cf1ea1ebacd81f9bdc37c29d707.tar.gz
Basic travis support.
Some of the pylint errors were also removed.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini13
1 files changed, 5 insertions, 8 deletions
diff --git a/tox.ini b/tox.ini
index a37172c97..314b271cd 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,19 +1,16 @@
[tox]
-# official list is
-#envlist = py27, py32, py33, py34
-envlist = py27, py33, pylint
+envlist = py27, py33, py34, py35, pypy, jython, pylint
+skip_missing_interpreters = true
[testenv:pylint]
deps =
- hg+https://bitbucket.org/logilab/astroid@master
- six
- hg+https://bitbucket.org/logilab/pylint
+ git+https://github.com/PyCQA/astroid@master
+
commands = pylint -rn --rcfile={toxinidir}/pylintrc {envsitepackagesdir}/pylint
[testenv]
deps =
- hg+https://bitbucket.org/logilab/astroid@master
- six
+ git+https://github.com/PyCQA/astroid@master
commands = python -Wi -m unittest discover -s {envsitepackagesdir}/pylint/test/ -p {posargs:*test_*}.py
changedir = {toxworkdir}