diff options
author | Barry Warsaw <barry@python.org> | 2011-10-07 19:14:53 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2011-10-07 19:14:53 (GMT) |
commit | cb9c5ba73673be215e10368d160c173788d58e15 (patch) | |
tree | 4bf7fbec3477de21b0b196c6b7af589b76d26142 /Lib/test/test_lib2to3.py | |
parent | dd07732af5793d7cd6fcd59c470f519709ff3eec (diff) | |
download | cpython-cb9c5ba73673be215e10368d160c173788d58e15.zip cpython-cb9c5ba73673be215e10368d160c173788d58e15.tar.gz cpython-cb9c5ba73673be215e10368d160c173788d58e15.tar.bz2 |
- Re-enable lib2to3's test_parser.py tests, though with an expected failure
(see issue 13125).
Diffstat (limited to 'Lib/test/test_lib2to3.py')
-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 0d6f9a3..24b2da6 100644 --- a/Lib/test/test_lib2to3.py +++ b/Lib/test/test_lib2to3.py @@ -1,6 +1,7 @@ # Skipping test_parser and test_all_fixers # because of running from lib2to3.tests import (test_fixers, test_pytree, test_util, test_refactor, + test_parser, test_main as test_main_) import unittest from test.support import run_unittest @@ -8,7 +9,7 @@ from test.support import run_unittest def suite(): tests = unittest.TestSuite() loader = unittest.TestLoader() - for m in (test_fixers, test_pytree,test_util, test_refactor, + for m in (test_fixers, test_pytree,test_util, test_refactor, test_parser, test_main_): tests.addTests(loader.loadTestsFromModule(m)) return tests |