@@ -545,16 +545,16 @@ class StatsTestRunner(unittest.TextTestRunner):
545
545
"""Committing results test results"""
546
546
resultclass = StatsTestResult
547
547
548
- def __init__ (self , stream = sys .stderr , descriptions = True , verbosity = 1 ,
548
+ def __init__ (self , stream = sys .stderr , descriptions = False , verbosity = 1 ,
549
549
failfast = False , buffer = False , resultclass = None , dbcnx = None ):
550
550
try :
551
551
super (StatsTestRunner , self ).__init__ (
552
- stream = sys .stderr , descriptions = True , verbosity = 1 ,
552
+ stream = sys .stderr , descriptions = descriptions , verbosity = verbosity ,
553
553
failfast = False , buffer = False )
554
554
except TypeError :
555
555
# Compatibility with Python v2.6
556
556
super (StatsTestRunner , self ).__init__ (
557
- stream = sys .stderr , descriptions = True , verbosity = 1 )
557
+ stream = sys .stderr , descriptions = descriptions , verbosity = verbosity )
558
558
self ._dbcnx = dbcnx
559
559
560
560
def _makeResult (self ):
@@ -586,7 +586,7 @@ class BasicTestRunner(unittest.TextTestRunner):
586
586
"""Basic test runner"""
587
587
resultclass = BasicTestResult
588
588
589
- def __init__ (self , stream = sys .stderr , descriptions = True , verbosity = 1 ,
589
+ def __init__ (self , stream = sys .stderr , descriptions = False , verbosity = 1 ,
590
590
failfast = False , buffer = False , warnings = 'ignore' ):
591
591
try :
592
592
super (BasicTestRunner , self ).__init__ (
@@ -602,7 +602,7 @@ def __init__(self, stream=sys.stderr, descriptions=True, verbosity=1,
602
602
class Python26TestRunner (unittest .TextTestRunner ):
603
603
"""Python v2.6/3.1 Test Runner backporting needed functionality"""
604
604
605
- def __init__ (self , stream = sys .stderr , descriptions = True , verbosity = 1 ,
605
+ def __init__ (self , stream = sys .stderr , descriptions = False , verbosity = 1 ,
606
606
failfast = False , buffer = False ):
607
607
super (Python26TestRunner , self ).__init__ (
608
608
stream = stream , descriptions = descriptions , verbosity = verbosity )
0 commit comments