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 serhiy.storchaka
Recipients eli.bendersky, ezio.melotti, ncoghlan, serhiy.storchaka
Date 2013-09-03.09:32:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1378200721.76.0.432578428028.issue18906@psf.upfronthosting.co.za>
In-reply-to
Content
> The most natural approach is to have a special attribute set in the module's global dict (for example: __REGRTEST_SUBPROCESS__ = True); however, there's a slight problem with this approach - regrtest has to import the module to see this attribute, and the module may do some work in its top-level code (commonly, imports) that already needs to be done within a subprocess.

The main regrtest process can run auxilary child process which imports all test modules and says main process which of them have __REGRTEST_SUBPROCESS__=True.

It will be even better if the main process runs child process for testing all tests so when any test crashes it is possible to report this and respawn child process to continue testing other tests.
History
Date User Action Args
2013-09-03 09:32:01serhiy.storchakasetrecipients: + serhiy.storchaka, ncoghlan, ezio.melotti, eli.bendersky
2013-09-03 09:32:01serhiy.storchakasetmessageid: <1378200721.76.0.432578428028.issue18906@psf.upfronthosting.co.za>
2013-09-03 09:32:01serhiy.storchakalinkissue18906 messages
2013-09-03 09:32:01serhiy.storchakacreate