All I found in the unittest module unittest , a description of the TextTestRunner constructor TextTestRunner and the following code sample using its run() method: unittest.TextTestRunner(verbosity=2).run(suite)
I would like to know how I can use TextTestRunner in failfast mode.
source share