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 ezio.melotti
Recipients Dmitry.Jemerov, berker.peksag, eric.araujo, ezio.melotti, flox, pitrou, python-dev
Date 2013-02-15.19:50:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1360957835.36.0.850962845397.issue17143@psf.upfronthosting.co.za>
In-reply-to
Content
The windows buildbots are failing with the following error:
ERROR: test_deprecated_find_strings (test.test_trace.TestDeprecatedMethods)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "C:\buildbot.python.org\3.x.kloth-win64\build\lib\test\test_trace.py", line 401, in test_deprecated_find_strings
    trace.find_strings(fd.name)
  File "C:\buildbot.python.org\3.x.kloth-win64\build\lib\trace.py", line 850, in find_strings
    return _find_strings(filename, encoding=None)
  File "C:\buildbot.python.org\3.x.kloth-win64\build\lib\trace.py", line 422, in _find_strings
    with open(filename, encoding=encoding) as f:
PermissionError: [Errno 13] Permission denied: 'c:\\users\\buildbot\\appdata\\local\\temp\\tmp_08yph'

See:
http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%203.3/builds/491/steps/test/logs/stdio
http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%203.x/builds/1473/steps/test/logs/stdio

The problem seems to be related to the use of NamedTemporaryFile in test_deprecated_find_strings, but doesn't seem to affect test_deprecated_find_executable_linenos.

There's also a warning for test_ignored:
test_ignored (test.test_trace.Test_Ignore) ... Not printing coverage data for 'c:\\users\\buildbot\\appdata\\local\\temp\\tmpwrqs7_': [Errno 13] Permission denied: 'c:\\users\\buildbot\\appdata\\local\\temp\\tmpwrqs7_'

This was probably here already, but went unnoticed because it doesn't cause failures and it's probably printed in verbose mode only.
History
Date User Action Args
2013-02-15 19:50:35ezio.melottisetrecipients: + ezio.melotti, pitrou, eric.araujo, flox, Dmitry.Jemerov, python-dev, berker.peksag
2013-02-15 19:50:35ezio.melottisetmessageid: <1360957835.36.0.850962845397.issue17143@psf.upfronthosting.co.za>
2013-02-15 19:50:35ezio.melottilinkissue17143 messages
2013-02-15 19:50:34ezio.melotticreate