summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorTorsten Marek <shlomme@gmail.com>2014-07-26 17:11:14 +0200
committerTorsten Marek <shlomme@gmail.com>2014-07-26 17:11:14 +0200
commit97006fcc02e1035c6b5c680e4f07b7e58fb14a12 (patch)
tree773da6bbbd64430a127fd3d79ba5e2835ac2be1e /tox.ini
parentfc7f9b8e0526f4ca9eb525479180843cc612bd1d (diff)
downloadpylint-git-97006fcc02e1035c6b5c680e4f07b7e58fb14a12.tar.gz
Remove dependency on logilab.testlib in the test suite (also removes Python 2.5 compatibility).
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini6
1 files changed, 3 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index f22de6e10..035fed0a6 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,10 +1,10 @@
[tox]
# official list is
-#envlist = py25, py26, py27, py32, py33
-# though 2.5 support is known to be broken...
+#envlist = py27, py32, py33, py34
envlist = py27, py33
[testenv]
deps =
logilab-common
hg+https://bitbucket.org/logilab/astroid/
-commands = pytest -t {envsitepackagesdir}/pylint/test/
+commands = python -Wi -m unittest discover -s {envsitepackagesdir}/pylint/test/ -p *test_*.py
+changedir = {toxworkdir}