Skip to content Skip to sidebar Skip to footer

How To Use Texttestrunner Class From Python Unittest Module In Failfast Mode?

All I found in documentation of unittest module is description of TextTestRunner's constructor and the following sample code using its run() method: unittest.TextTestRunner(verbosi

Solution 1:

Constructor of TextTestRunner class has failfast parameter which is not shown in the constructor's documentation.

UPDATE

I raised bug 17871 and it's fixed now what you can verify at http://docs.python.org/3.3/library/unittest.html#unittest.TextTestRunner

Post a Comment for "How To Use Texttestrunner Class From Python Unittest Module In Failfast Mode?"