[issue20800] Cannot run gui tests twice.

2018-12-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: Either test repeated works now. -- resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker ___

[issue20800] Cannot run gui tests twice.

2018-12-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I have just tested on Windows and all works to me. Terry, can you confirm that this issue is gone? -- ___ Python tracker ___

[issue20800] Cannot run gui tests twice.

2014-06-02 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: From Ned Deily's message. haven't tried it recently on a Linux system Output from a linux syste: ./python -m test -ugui test_ttk_guionly test_ttk_guionly test_idle test_idle [1/4] test_ttk_guionly [2/4] test_ttk_guionly [3/4] test_idle [4/4] test_idle All

[issue20800] Cannot run gui tests twice.

2014-06-01 Thread Terry J. Reedy
Changes by Terry J. Reedy tjre...@udel.edu: -- versions: +Python 3.5 -Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20800 ___ ___

[issue20800] Cannot run gui tests twice.

2014-06-01 Thread Ned Deily
Ned Deily added the comment: For what it's worth, I don't see the problem on OS X (haven't tried it recently on a Linux system), so it might be a Windows only issue. It's become clearer that some test combinations can only be safely run with the regrtest -j option to run them as separate

[issue20800] Cannot run gui tests twice.

2014-06-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Does recent patch for issue20035 help? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20800 ___ ___

[issue20800] Cannot run gui tests twice.

2014-02-27 Thread Terry J. Reedy
New submission from Terry J. Reedy: After the fix for #20567, running test_idle and then test_ttk_guionly works, but running either after itself does not. Example command and output, which is same running with installed 3.4.0rc1 (Feb 11) or fresh debug build. F:\Python\dev

[issue20800] Cannot run gui tests twice.

2014-02-27 Thread Ned Deily
Ned Deily added the comment: The Warning -- os.environ was modified by test_ttk_guionly looks suspicious. Does the patch for Issue20035 help? -- nosy: +ned.deily ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20800

[issue20800] Cannot run gui tests twice.

2014-02-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: The #20035 patch removes the warning but the rest is the same. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20800 ___

[issue20800] Cannot run gui tests twice.

2014-02-27 Thread Ned Deily
Ned Deily added the comment: What happens if you add -v (verbose) ... -m test -v -ugui ... to find the failing tests? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20800 ___

[issue20800] Cannot run gui tests twice.

2014-02-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: With 3.3 and the patch still applied, all 13 test methods fail with tracebacks that end with the _tkinter.create call, as above. For Idle, there are 3 tracebacks for the 3 modules with gui tests. -- ___ Python