summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Thénault <sylvain.thenault@logilab.fr>2006-10-08 13:21:58 +0200
committerSylvain Thénault <sylvain.thenault@logilab.fr>2006-10-08 13:21:58 +0200
commit6056bf0a4bc59e9594049667874c82b1b02b563a (patch)
treee62b368356705d3d53276d16dec2eeb01e86f282
parentfa5064c3a82465da2a501591f24460c06d624025 (diff)
downloadpylint-git-6056bf0a4bc59e9594049667874c82b1b02b563a.tar.gz
test fix
-rw-r--r--test/regrtest.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/regrtest.py b/test/regrtest.py
index 8648c2154..3cf63d20d 100644
--- a/test/regrtest.py
+++ b/test/regrtest.py
@@ -16,7 +16,6 @@
"""non regression tests for pylint, which requires a too specific configuration
to be incorporated in the automatic functionnal test framework
"""
-__revision__ = '$Id: regrtest.py,v 1.12 2006-03-03 09:25:34 syt Exp $'
import sys
import os
@@ -83,7 +82,7 @@ class NonRegrTC(TestCase):
except ImportError:
self.skip('test skipped: gtk is not available')
except RuntimeError: # RuntimeError when missing display
- pass
+ self.skip('no display, can\'t run this test')
linter.check('regrtest_data/pygtk_import.py')
got = linter.reporter.finalize().strip()
self.failUnlessEqual(got, '')