diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2012-05-07 21:36:43 (GMT) |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2012-05-07 21:36:43 (GMT) |
commit | 79575b210fd5ae49b09f1cbc3278fd8655c81ba5 (patch) | |
tree | a92989f1cd8e8fcf549bc1bde03e095d3bf94c1b /Lib | |
parent | 6efa50a384f61155cd5315cd32f0f8775fe124c5 (diff) | |
download | cpython-79575b210fd5ae49b09f1cbc3278fd8655c81ba5.zip cpython-79575b210fd5ae49b09f1cbc3278fd8655c81ba5.tar.gz cpython-79575b210fd5ae49b09f1cbc3278fd8655c81ba5.tar.bz2 |
Issue #14742: Don't include DirectoryTestCase from test_unparse in test_tools until we can speed it up.
Diffstat (limited to 'Lib')
-rw-r--r-- | 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 index 87a1ec8..bc2672d 100644 --- a/Lib/test/test_tools.py +++ b/Lib/test/test_tools.py @@ -124,7 +124,7 @@ class Gprof2htmlTests(unittest.TestCase): # 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(): |