Skip to content

Commit 8ac147d

Browse files
committed
Backed out changeset cc86e9e102e8
1 parent 97eda15 commit 8ac147d

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

Lib/distutils/tests/test_filelist.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from distutils import filelist
1010

1111
import test.support
12-
from test.support import captured_stdout
12+
from test.support import captured_stdout, run_unittest
1313
from distutils.tests import support
1414

1515
MANIFEST_IN = """\
@@ -329,5 +329,12 @@ def test_non_local_discovery(self):
329329
self.assertEqual(filelist.findall(temp_dir), expected)
330330

331331

332+
def test_suite():
333+
return unittest.TestSuite([
334+
unittest.makeSuite(FileListTestCase),
335+
unittest.makeSuite(FindAllTestCase),
336+
])
337+
338+
332339
if __name__ == "__main__":
333-
unittest.main()
340+
run_unittest(test_suite())

0 commit comments

Comments
 (0)