From: Brett Cannon Date: Fri, 12 Aug 2016 17:53:53 +0000 (-0700) Subject: Issue #25805: Skip a test for test_pkgutil when __name__ == __main__. X-Git-Tag: v3.6.0a4~23 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4a2360d3f786053a8e324c4b9587aa6025072689;p=python Issue #25805: Skip a test for test_pkgutil when __name__ == __main__. Thanks to SilentGhost for the patch. --- diff --git a/Lib/test/test_pkgutil.py b/Lib/test/test_pkgutil.py index a82058760d..ae2aa1bcea 100644 --- a/Lib/test/test_pkgutil.py +++ b/Lib/test/test_pkgutil.py @@ -413,6 +413,7 @@ class ImportlibMigrationTests(unittest.TestCase): self.assertIsNotNone(pkgutil.get_loader("test.support")) self.assertEqual(len(w.warnings), 0) + @unittest.skipIf(__name__ == '__main__', 'not compatible with __main__') def test_get_loader_handles_missing_loader_attribute(self): global __loader__ this_loader = __loader__ diff --git a/Misc/NEWS b/Misc/NEWS index 47855c94c6..6cd1b1c3ca 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -96,6 +96,9 @@ Library Tests ----- +- Issue #25805: Skip a test in test_pkgutil as needed that doesn't work when + ``__name__ == __main__``. Patch by SilentGhost. + - Issue #27472: Add test.support.unix_shell as the path to the default shell. - Issue #27369: In test_pyexpat, avoid testing an error message detail that