
python-checkins at python
May 7, 2012, 2:37 PM
Post #1 of 1
(41 views)
Permalink
|
|
cpython: Issue #14742: Don't include DirectoryTestCase from test unparse in test tools
|
|
http://hg.python.org/cpython/rev/dbfacec7e368 changeset: 76828:dbfacec7e368 parent: 76826:d6324941b739 user: Mark Dickinson <mdickinson [at] enthought> date: Mon May 07 22:36:43 2012 +0100 summary: Issue #14742: Don't include DirectoryTestCase from test_unparse in test_tools until we can speed it up. files: Lib/test/test_tools.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Lib/test/test_tools.py b/Lib/test/test_tools.py --- a/Lib/test/test_tools.py +++ b/Lib/test/test_tools.py @@ -124,7 +124,7 @@ # Run the tests in Tools/parser/test_unparse.py with support.DirsOnSysPath(os.path.join(basepath, 'parser')): - from test_unparse import UnparseTestCase, DirectoryTestCase + from test_unparse import UnparseTestCase def test_main(): -- Repository URL: http://hg.python.org/cpython
|