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: New resource ('gui') for regrtest
Type: Stage:
Components: Tests Versions: Python 3.1, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, brett.cannon, gpolo
Priority: normal Keywords: patch

Created on 2009-01-27 20:30 by gpolo, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
regrtest_gui_resource.diff gpolo, 2009-01-27 20:30
Messages (7)
msg80668 - (view) Author: Guilherme Polo (gpolo) * (Python committer) Date: 2009-01-27 20:30
I would like to add a 'gui' resource in regrtest, this would be nice for
the ttk module that I'm planning to do add very soon (after I solve
another issue about tests).
msg80713 - (view) Author: Guilherme Polo (gpolo) * (Python committer) Date: 2009-01-28 14:44
Uhm, maybe this 'gui' resource is too special to live in use_resources ?
Maybe a new option in regrtest would be better ?
msg80714 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-01-28 15:47
Do the tests require human interaction? If so, it should definitely be
another option.

Otherwise, I'm don't know if we'll be wreaking havok with the buildbots
by including it in -uall even if it is automatic.
msg80715 - (view) Author: Guilherme Polo (gpolo) * (Python committer) Date: 2009-01-28 15:52
> Do the tests require human interaction? If so, it should definitely be
> another option.
>

No interaction is needed for the current ones.

> Otherwise, I'm don't know if we'll be wreaking havok with the buildbots
> by including it in -uall even if it is automatic.
>

I'm worried that those buildbots systems are not really supposed to
have all the libraries required installed, the only exception would be
the ones running under Windows.
msg80721 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2009-01-28 18:35
Well, if the libraries for Ttk are not included then the tests should
get skipped when the import fails.

A key reason to leaving something out of 'all' is if it takes a REALLY
long time like the zipfile64 tests.
msg80723 - (view) Author: Guilherme Polo (gpolo) * (Python committer) Date: 2009-01-28 19:30
> Well, if the libraries for Ttk are not included then the tests should
> get skipped when the import fails.
>

Ah yes, good you said that because I wasn't doing it.

> A key reason to leaving something out of 'all' is if it takes a REALLY
> long time like the zipfile64 tests.

I will add a 'gui' resource on regrtest then.
msg80725 - (view) Author: Guilherme Polo (gpolo) * (Python committer) Date: 2009-01-28 20:06
Added in r69063
History
Date User Action Args
2022-04-11 14:56:44adminsetgithub: 49333
2009-01-28 20:06:52gpolosetstatus: open -> closed
resolution: fixed
messages: + msg80725
2009-01-28 19:30:32gpolosetmessages: + msg80723
2009-01-28 18:35:23brett.cannonsetnosy: + brett.cannon
messages: + msg80721
2009-01-28 15:52:37gpolosetmessages: + msg80715
2009-01-28 15:47:24benjamin.petersonsetnosy: + benjamin.peterson
messages: + msg80714
2009-01-28 14:44:51gpolosetmessages: + msg80713
2009-01-27 20:30:20gpolocreate