This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients vstinner
Date 2021-09-15.13:19:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1631711969.83.0.460025250602.issue45205@roundup.psfhosted.org>
In-reply-to
Content
The following 4 test_compileall tests logs "Compiling ..." messages:

test_larger_than_32_bit_times (test.test_compileall.CompileallTestsWithSourceEpoch) ... Compiling '/tmp/tmp1k_q89f5/_test.py'...
ok
test_year_2038_mtime_compilation (test.test_compileall.CompileallTestsWithSourceEpoch) ... Compiling '/tmp/tmp83hk4o6n/_test.py'...
ok
test_larger_than_32_bit_times (test.test_compileall.CompileallTestsWithoutSourceEpoch) ... Compiling '/tmp/tmpf9fir94a/_test.py'...
ok
test_year_2038_mtime_compilation (test.test_compileall.CompileallTestsWithoutSourceEpoch) ... Compiling '/tmp/tmpw9mtirkx/_test.py'...
ok

Current output:
----------------
$ ./python -m test test_compileall 
0:00:00 load avg: 1.09 Run tests sequentially
0:00:00 load avg: 1.09 [1/1] test_compileall
Compiling '/tmp/tmpdc269658/_test.py'...
Compiling '/tmp/tmppeummd0q/_test.py'...
Compiling '/tmp/tmp_vf3awm7/_test.py'...
Compiling '/tmp/tmpgkxrt872/_test.py'...

== Tests result: SUCCESS ==

1 test OK.

Total duration: 23.3 sec
Tests result: SUCCESS
----------------

I would prefer a quiet output (no message).
History
Date User Action Args
2021-09-15 13:19:29vstinnersetrecipients: + vstinner
2021-09-15 13:19:29vstinnersetmessageid: <1631711969.83.0.460025250602.issue45205@roundup.psfhosted.org>
2021-09-15 13:19:29vstinnerlinkissue45205 messages
2021-09-15 13:19:29vstinnercreate