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: test_gettext failure on Win64 buildbot
Type: behavior Stage:
Components: Tests Versions: Python 3.2, Python 3.3, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: christian.heimes, jeremy.kloth, pitrou, skrah
Priority: normal Keywords: buildbot

Created on 2012-06-26 21:39 by pitrou, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg164112 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2012-06-26 21:39
Another weird failure that isn't common on other buildbots:


test test_gettext failed -- Traceback (most recent call last):
  File "C:\Users\Buildbot\buildbot.python.org\3.2.kloth-win64\build\lib\test\test_gettext.py", line 80, in tearDown
    shutil.rmtree(os.path.split(LOCALEDIR)[0])
  File "C:\Users\Buildbot\buildbot.python.org\3.2.kloth-win64\build\lib\shutil.py", line 289, in rmtree
    onerror(os.rmdir, path, sys.exc_info())
  File "C:\Users\Buildbot\buildbot.python.org\3.2.kloth-win64\build\lib\shutil.py", line 287, in rmtree
    os.rmdir(path)
WindowsError: [Error 145] The directory is not empty: 'xx'
msg164114 - (view) Author: Jeremy Kloth (jeremy.kloth) Date: 2012-06-26 22:27
I've now also turned off indexing for the Buildbot account (and
folders).  Hopefully this is the last directory walking process
interfering with the tests.
msg192380 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2013-07-06 00:41
Looks fine now. I haven't seen that error in a while. Thanks!
History
Date User Action Args
2022-04-11 14:57:32adminsetgithub: 59402
2013-07-06 00:41:25christian.heimessetstatus: open -> closed

nosy: + christian.heimes
messages: + msg192380

resolution: fixed
2012-06-26 22:27:17jeremy.klothsetmessages: + msg164114
2012-06-26 21:39:18pitroucreate