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 serhiy.storchaka
Date 2021-08-31.07:24:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1630394668.9.0.639670262222.issue45057@roundup.psfhosted.org>
In-reply-to
Content
RegressionTestResult is a subclass of TextTestResult, but it completely ignores the TextTestResult function of outputting results and re-implements it. The problem of this is not only duplicating the code, but that if TextTestResult is changed (for example to fix issue25894) the corresponding changes should be re-implemented in RegressionTestResult. And since implementations that produce the same result are different (somewhere in subtle way), it adds much work and is errorprone.

The proposed PR removes any text output code from RegressionTestResult and allows to use TextTestResult for output.
History
Date User Action Args
2021-08-31 07:24:28serhiy.storchakasetrecipients: + serhiy.storchaka
2021-08-31 07:24:28serhiy.storchakasetmessageid: <1630394668.9.0.639670262222.issue45057@roundup.psfhosted.org>
2021-08-31 07:24:28serhiy.storchakalinkissue45057 messages
2021-08-31 07:24:28serhiy.storchakacreate