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 ezio.melotti, michael.foord, rbcollins, serhiy.storchaka
Date 2021-08-19.11:58:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1629374326.22.0.989975388504.issue44955@roundup.psfhosted.org>
In-reply-to
Content
Method startTestRun() is always called for the TestResult object implicitly created by TestCase.defaultTestResult() when no TestResult object is passed to TestCase.run(). But method stopTestRun() is not always called in pair with startTestRun() for skipped tests. It is only called if SkipTest was raised directly or indirectly (via skipTest()). It is not called if a skipping decorator (@skip, @skipIf, @skipUnless) was used for a method or a class.
History
Date User Action Args
2021-08-19 11:58:46serhiy.storchakasetrecipients: + serhiy.storchaka, rbcollins, ezio.melotti, michael.foord
2021-08-19 11:58:46serhiy.storchakasetmessageid: <1629374326.22.0.989975388504.issue44955@roundup.psfhosted.org>
2021-08-19 11:58:46serhiy.storchakalinkissue44955 messages
2021-08-19 11:58:46serhiy.storchakacreate