Thanks to visit codestin.com Credit goes to github.com
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.
2 parents 65e3319 + 8ac147d commit b44c849Copy full SHA for b44c849
1 file changed
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