[issue5728] Support telling TestResult objects a test run has finished

2009-05-02 Thread Michael Foord
Michael Foord added the comment: Committed in revision 72225. -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list ma

[issue5728] Support telling TestResult objects a test run has finished

2009-04-16 Thread Robert Collins
Robert Collins added the comment: Updates - docs, and fixes a couple of stubbed out upcalls in the logging result put in while bootsrapping. -- Added file: http://bugs.python.org/file13709/start-stop-TestRun.patch ___ Python tracker

[issue5728] Support telling TestResult objects a test run has finished

2009-04-15 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: On Apr 15, 2009, at 7:43 PM, Robert Collins wrote: > Robert Collins added the comment: > > On Wed, 2009-04-15 at 23:19 +, Barry A. Warsaw wrote: >> Barry A. Warsaw added the comment: >> >> The patch looks fine to me, except that it's missing documentatio

[issue5728] Support telling TestResult objects a test run has finished

2009-04-15 Thread Robert Collins
Robert Collins added the comment: On Wed, 2009-04-15 at 23:19 +, Barry A. Warsaw wrote: > Barry A. Warsaw added the comment: > > The patch looks fine to me, except that it's missing documentation > updates. The feature and names are fine too. Where do the docs go? -Rob --

[issue5728] Support telling TestResult objects a test run has finished

2009-04-15 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: The patch looks fine to me, except that it's missing documentation updates. The feature and names are fine too. -- nosy: +barry ___ Python tracker ___

[issue5728] Support telling TestResult objects a test run has finished

2009-04-11 Thread Robert Collins
Robert Collins added the comment: I've written up a patch for this; it works with old result classes too. Hopefully the bugtracker will attach it in reply to this mail; if not I'll put in via the webui this evening. -Rob -- keywords: +patch Added file: http://bugs.python.org/file13669

[issue5728] Support telling TestResult objects a test run has finished

2009-04-09 Thread Doug Philips
Doug Philips added the comment: Quite useful! Names are hard, but the ones proposed are pretty good. -- nosy: +dgou ___ Python tracker ___ ___

[issue5728] Support telling TestResult objects a test run has finished

2009-04-09 Thread Michael Foord
Michael Foord added the comment: startTestRun and stopTestRun sound good to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue5728] Support telling TestResult objects a test run has finished

2009-04-09 Thread Robert Collins
Robert Collins added the comment: Now, some refinements, as usual (for me at least) when considering a feature like this from an upstream perspective, where one's immediate use cases are just special cases not general case, I've come up with some refinements. Firstly, I said you can infer start

[issue5728] Support telling TestResult objects a test run has finished

2009-04-09 Thread Robert Collins
New submission from Robert Collins : Original mail: JML's testtools has a TestResult subclass with a done() method. The reason for this method is to allow doing things after the last test has run. While a result can infer 'first test' it can't infer 'last test' without ugliness like __del__. Som