diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-07-16 00:44:02 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-07-16 00:44:02 (GMT) |
commit | a736a287025c8326381401e07155188ccf462553 (patch) | |
tree | e295ee365c977d9a6c5f0fe8f3ce5ab76a71c74e /Lib | |
parent | a5fa5a218d3f37485384948a1033fa5a73c2895c (diff) | |
download | cpython-a736a287025c8326381401e07155188ccf462553.zip cpython-a736a287025c8326381401e07155188ccf462553.tar.gz cpython-a736a287025c8326381401e07155188ccf462553.tar.bz2 |
disable lib2to3 in the trunk. It's broken just for 2.6
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_lib2to3.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_lib2to3.py b/Lib/test/test_lib2to3.py index 6d589d8..63cfca0 100644 --- a/Lib/test/test_lib2to3.py +++ b/Lib/test/test_lib2to3.py @@ -2,10 +2,11 @@ # because of running from lib2to3.tests import test_fixers, test_pytree, test_util import unittest -from test.test_support import run_unittest, requires +from test.test_support import run_unittest, requires, TestSkipped # Don't run lib2to3 tests by default since they take too long if __name__ != '__main__': + raise TestSkipped('HELP! lib2to3 is broken in Python 2.6!') requires('lib2to3') def suite(): |