Skip to content

Commit

Permalink
Backed out changeset cc86e9e102e8
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Sep 2, 2016
1 parent 97eda15 commit 8ac147d
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions Lib/distutils/tests/test_filelist.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from distutils import filelist

import test.support
from test.support import captured_stdout
from test.support import captured_stdout, run_unittest
from distutils.tests import support

MANIFEST_IN = """\
Expand Down Expand Up @@ -329,5 +329,12 @@ def test_non_local_discovery(self):
self.assertEqual(filelist.findall(temp_dir), expected)


def test_suite():
return unittest.TestSuite([
unittest.makeSuite(FileListTestCase),
unittest.makeSuite(FindAllTestCase),
])


if __name__ == "__main__":
unittest.main()
run_unittest(test_suite())

0 comments on commit 8ac147d

Please sign in to comment.