MCPcopy Index your code
hub / github.com/python/cpython / debug

Method debug

Lib/unittest/suite.py:135–138  ·  view source on GitHub ↗

Run the tests without collecting errors in a TestResult

(self)

Source from the content-addressed store, hash-verified

133 return result
134
135 def debug(self):
136 """Run the tests without collecting errors in a TestResult"""
137 debug = _DebugResult()
138 self.run(debug, True)
139
140 ################################
141

Callers 3

debugMethod · 0.45
runMethod · 0.45

Calls 2

runMethod · 0.95
_DebugResultClass · 0.85