[Python-checkins] bpo-45205: Make test_compileall quiet (GH-28356) (GH-28370)

ambv webhook-mailer at python.org
Wed Sep 15 15:32:04 EDT 2021


https://github.com/python/cpython/commit/17000b5a80e6ec071ea5007dcc6792e9daaaf0f2
commit: 17000b5a80e6ec071ea5007dcc6792e9daaaf0f2
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: ambv <lukasz at langa.pl>
date: 2021-09-15T21:31:59+02:00
summary:

bpo-45205: Make test_compileall quiet (GH-28356) (GH-28370)

Make test_compileall quiet: test_year_2038_mtime_compilation() and
test_larger_than_32_bit_times() of test_compileall no longer log
"Compiling ..." messages to stdout.
(cherry picked from commit cc057ff5227b3a4ded637caa7ba51b67b06abaaa)

Co-authored-by: Victor Stinner <vstinner at python.org>

files:
M Lib/test/test_compileall.py

diff --git a/Lib/test/test_compileall.py b/Lib/test/test_compileall.py
index cc51b8c06a063..9e15ecf3aae29 100644
--- a/Lib/test/test_compileall.py
+++ b/Lib/test/test_compileall.py
@@ -91,7 +91,8 @@ def test_year_2038_mtime_compilation(self):
             os.utime(self.source_path, (2**32 - 1, 2**32 - 1))
         except (OverflowError, OSError):
             self.skipTest("filesystem doesn't support timestamps near 2**32")
-        self.assertTrue(compileall.compile_file(self.source_path))
+        with contextlib.redirect_stdout(io.StringIO()):
+            self.assertTrue(compileall.compile_file(self.source_path))
 
     def test_larger_than_32_bit_times(self):
         # This is similar to the test above but we skip it if the OS doesn't
@@ -100,7 +101,8 @@ def test_larger_than_32_bit_times(self):
             os.utime(self.source_path, (2**35, 2**35))
         except (OverflowError, OSError):
             self.skipTest("filesystem doesn't support large timestamps")
-        self.assertTrue(compileall.compile_file(self.source_path))
+        with contextlib.redirect_stdout(io.StringIO()):
+            self.assertTrue(compileall.compile_file(self.source_path))
 
     def recreation_check(self, metadata):
         """Check that compileall recreates bytecode when the new metadata is



More information about the Python-checkins mailing list