We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97eda15 commit 8ac147dCopy full SHA for 8ac147d
Lib/distutils/tests/test_filelist.py
@@ -9,7 +9,7 @@
9
from distutils import filelist
10
11
import test.support
12
-from test.support import captured_stdout
+from test.support import captured_stdout, run_unittest
13
from distutils.tests import support
14
15
MANIFEST_IN = """\
@@ -329,5 +329,12 @@ def test_non_local_discovery(self):
329
self.assertEqual(filelist.findall(temp_dir), expected)
330
331
332
+def test_suite():
333
+ return unittest.TestSuite([
334
+ unittest.makeSuite(FileListTestCase),
335
+ unittest.makeSuite(FindAllTestCase),
336
+ ])
337
+
338
339
if __name__ == "__main__":
- unittest.main()
340
+ run_unittest(test_suite())
0 commit comments