summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2014-08-29 11:16:29 -0400
committerBrett Cannon <brett@python.org>2014-08-29 11:16:29 -0400
commit131810f8df6431ffef5d0cf345d67aeec7c3c605 (patch)
treed4c1219e564ccffc8feeb3b42785038a47cc14e6 /tox.ini
parent2995e293950edc39b0466d1274affc1136c066c8 (diff)
downloadpylint-131810f8df6431ffef5d0cf345d67aeec7c3c605.tar.gz
Modernize to the point of working for Python 2.7 still
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 3 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 035fed0..97268ae 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,10 +1,12 @@
[tox]
# official list is
#envlist = py27, py32, py33, py34
-envlist = py27, py33
+#envlist = py27, py33
+envlist = py27, py34
[testenv]
deps =
logilab-common
hg+https://bitbucket.org/logilab/astroid/
+ six
commands = python -Wi -m unittest discover -s {envsitepackagesdir}/pylint/test/ -p *test_*.py
changedir = {toxworkdir}