[issue15415] Add temp_dir() and change_cwd() to test.support

2013-07-29 Thread Nick Coghlan
Nick Coghlan added the comment: While there are some remaining buildbot failures, they don't appear to be related to this issue any more. -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue15415] Add temp_dir() and change_cwd() to test.support

2013-07-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: As of this moment, the test has run on one of the two Win7 machines and the xp buildbot. It also runs by itself on my win7 desktop with a fresh pull. -- ___ Python tracker ___

[issue15415] Add temp_dir() and change_cwd() to test.support

2013-07-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 403b038ff075 by Nick Coghlan in branch '3.3': Third attempt to fix #15415 on Windows http://hg.python.org/cpython/rev/403b038ff075 New changeset fa13a159f063 by Nick Coghlan in branch 'default': Merge #15415 from 3.3 (again) http://hg.python.org/cpy

[issue15415] Add temp_dir() and change_cwd() to test.support

2013-07-29 Thread Nick Coghlan
Nick Coghlan added the comment: No dice: http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%203.x/builds/2399/steps/test/logs/stdio Could someone with a Windows build set up try this out? I'd like to rule out a conflict with the -j setting, since being dependent on the current wor

[issue15415] Add temp_dir() and change_cwd() to test.support

2013-07-28 Thread Nick Coghlan
Nick Coghlan added the comment: I did see the Windows buildbot failure, but stopped scanning the log once I saw the intermittent test_signal failure :P With the more granular API, test_startfile is a better fit for support.change_cwd, so we'll see how that goes on the Windows buildbots. -

[issue15415] Add temp_dir() and change_cwd() to test.support

2013-07-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset a76693942de3 by Nick Coghlan in branch '3.3': Attempt to fix #15415 on Windows http://hg.python.org/cpython/rev/a76693942de3 New changeset b14308524cff by Nick Coghlan in branch 'default': Merge #15415 Windows buildbot change from 3.3 http://hg.pyth

[issue15415] Add temp_dir() and change_cwd() to test.support

2013-07-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: -def temp_cwd(name='tempcwd', quiet=False, path=None): +def temp_cwd(name='tempcwd', quiet=False): Since this parameter removal was pushed, the Windows buildbots consistently have this new error in this Windows-only test. ERROR: test_empty (test.test_startfil

[issue15415] Add temp_dir() and change_cwd() to test.support

2013-07-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4f0034477ba9 by Nick Coghlan in branch '3.3': Close #15415: Factor out temp dir helpers to test.support http://hg.python.org/cpython/rev/4f0034477ba9 New changeset b20a10c97e08 by Nick Coghlan in branch 'default': Merge #15415 from 3.3 http://hg.pyt

[issue15415] Add temp_dir() and change_cwd() to test.support

2013-07-07 Thread Indra Talip
Indra Talip added the comment: cleaning up patch so that it will apply cleanly after applying patch from issue15494 -- nosy: +italip Added file: http://bugs.python.org/file30858/issue-15415-4.patch ___ Python tracker

[issue15415] Add temp_dir() and change_cwd() to test.support

2012-11-12 Thread Eric Snow
Changes by Eric Snow : -- nosy: +eric.snow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue15415] Add temp_dir() and change_cwd() to test.support

2012-09-19 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: +brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue15415] Add temp_dir() and change_cwd() to test.support

2012-09-18 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti, flox type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue15415] Add temp_dir() and change_cwd() to test.support

2012-07-25 Thread Nick Coghlan
Changes by Nick Coghlan : -- assignee: -> ncoghlan nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue15415] Add temp_dir() and change_cwd() to test.support

2012-07-21 Thread Chris Jerdonek
Chris Jerdonek added the comment: Trying again to have the patch apply cleanly (for the review link). -- Added file: http://bugs.python.org/file26472/issue-15415-3.patch ___ Python tracker

[issue15415] Add temp_dir() and change_cwd() to test.support

2012-07-21 Thread Chris Jerdonek
Chris Jerdonek added the comment: Fixing patch so it will apply cleanly. -- Added file: http://bugs.python.org/file26470/issue-15415-2.patch ___ Python tracker ___ _

[issue15415] Add temp_dir() and change_cwd() to test.support

2012-07-21 Thread Chris Jerdonek
Chris Jerdonek added the comment: Attaching a patch with tests. -- keywords: +patch stage: -> patch review Added file: http://bugs.python.org/file26468/issue-15415-1.patch ___ Python tracker _

[issue15415] Add temp_dir() and change_cwd() to test.support

2012-07-21 Thread Chris Jerdonek
New submission from Chris Jerdonek : This issue is partly in service to issue 15376, which is to refactor test_runpy's walk_package support code into a common location. Currently, the temp_cwd() context manager in test.support does two things: it creates a temp directory, and it changes the cu