mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
- Re-enable lib2to3's test_parser.py tests, though with an expected failure
(see issue 13125).
This commit is contained in:
parent
dd07732af5
commit
cb9c5ba736
3 changed files with 20 additions and 10 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue