]> granicus.if.org Git - python/commitdiff
Issue #25607: Restore old distutils logging threshold after running tests that
authorSerhiy Storchaka <storchaka@gmail.com>
Thu, 12 Nov 2015 17:46:23 +0000 (19:46 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Thu, 12 Nov 2015 17:46:23 +0000 (19:46 +0200)
parse command line arguments.

Lib/distutils/tests/test_core.py
Lib/distutils/tests/test_dist.py
Lib/test/test_shutil.py

index 41321f7db4eee64affcd2692175350498ff85918..654227ca18f0281b642f24008778879d0186f3be 100644 (file)
@@ -9,6 +9,7 @@ import test.support
 from test.support import captured_stdout, run_unittest
 import unittest
 from distutils.tests import support
+from distutils import log
 
 # setup script that uses __file__
 setup_using___file__ = """\
@@ -36,6 +37,7 @@ class CoreTestCase(support.EnvironGuard, unittest.TestCase):
         self.old_stdout = sys.stdout
         self.cleanup_testfn()
         self.old_argv = sys.argv, sys.argv[:]
+        self.addCleanup(log.set_threshold, log._global_log.threshold)
 
     def tearDown(self):
         sys.stdout = self.old_stdout
index b7fd3fbf90f7dee80bbe94ec93844d4fa4e9919d..1f104cef675d9a6fc12506244c572b533d32e35b 100644 (file)
@@ -13,6 +13,7 @@ from distutils.cmd import Command
 
 from test.support import TESTFN, captured_stdout, run_unittest
 from distutils.tests import support
+from distutils import log
 
 
 class test_dist(Command):
@@ -405,6 +406,7 @@ class MetadataTestCase(support.TempdirManager, support.EnvironGuard,
 
     def test_show_help(self):
         # smoke test, just makes sure some help is displayed
+        self.addCleanup(log.set_threshold, log._global_log.threshold)
         dist = Distribution()
         sys.argv = []
         dist.help = 1
index 5b4e7e76699abfc22886a61855b033d363adb787..26a3eae75a1ee605eb668898721598e5154b71b8 100644 (file)
@@ -1031,7 +1031,7 @@ class TestShutil(unittest.TestCase):
         # now create another tarball using `tar`
         tarball2 = os.path.join(root_dir, 'archive2.tar')
         tar_cmd = ['tar', '-cf', 'archive2.tar', base_dir]
-        with support.change_cwd(root_dir), captured_stdout():
+        with support.change_cwd(root_dir):
             spawn(tar_cmd)
 
         self.assertTrue(os.path.isfile(tarball2))