23.03.2021 21:54, Vladimir Sementsov-Ogievskiy wrote:
+class ReproducibleTestRunner(unittest.TextTestRunner): + def __init__(self, stream: Optional[io.TextIOBase] = None, + resultclass: Type = ReproducibleTestResult, *args, **kwargs):actually, neither stream nor resultclass arguments are used in the code, so it seems we don't need them?
Ah, we probably should support them to be prepared for the following patch. -- Best regards, Vladimir