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.

classification
Title: run_tests.py doesn't set test.support.verbose correctly
Type: behavior Stage: patch review
Components: Demos and Tools, Tests Versions: Python 3.4, Python 3.5
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: berker.peksag, ezio.melotti, michael.foord, pitrou
Priority: normal Keywords: patch

Created on 2015-01-14 00:04 by berker.peksag, last changed 2022-04-11 14:58 by admin.

Files
File name Uploaded Description Edit
issue23235.diff berker.peksag, 2015-01-14 01:10 review
Messages (2)
msg233976 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2015-01-14 00:04
"make buildbottest" uses Tools/scripts/run_tests.py and it doesn't set test.support.verbose to 0.

Example output from a buildbot:

    [ 60/389] test_codecmaps_hk
    	fetching http://www.pythontest.net/unicode/BIG5HKSCS-2004.TXT ...

http://buildbot.python.org/all/builders/System%20Z%20Linux%203.4/builds/683/steps/test/logs/stdio

It works as expected if you use regrtest directly with empty Lib/test/data/ directory:

    $ ./python -m test test_codecmaps_hk
    [1/1] test_codecmaps_hk
    1 test OK.
msg233982 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2015-01-14 01:03
Here is a possible fix.
History
Date User Action Args
2022-04-11 14:58:11adminsetgithub: 67424
2015-10-24 15:04:09serhiy.storchakasetnosy: + pitrou, ezio.melotti, michael.foord
components: + Tests
2015-01-14 01:10:42berker.peksagsetfiles: - issue23235.diff
2015-01-14 01:10:29berker.peksagsetfiles: + issue23235.diff
2015-01-14 01:03:58berker.peksagsetfiles: + issue23235.diff
keywords: + patch
messages: + msg233982

stage: needs patch -> patch review
2015-01-14 00:04:35berker.peksagcreate