Searched refs:addSkip (Results 1 – 9 of 9) sorted by relevance
/third_party/python/Lib/unittest/test/ |
D | support.py | 73 def addSkip(self, *args): member in _BaseLoggingResult 75 super().addSkip(*args)
|
/third_party/python/Lib/unittest/ |
D | suite.py | 241 addSkip = getattr(result, 'addSkip', None) 242 if addSkip is not None and isinstance(exception, case.SkipTest): 243 addSkip(error, str(exception))
|
D | runner.py | 85 def addSkip(self, test, reason): member in TextTestResult 86 super(TextTestResult, self).addSkip(test, reason)
|
D | result.py | 146 def addSkip(self, test, reason): member in TestResult
|
D | case.py | 471 addSkip = getattr(result, 'addSkip', None) 472 if addSkip is not None: 473 addSkip(test_case, reason)
|
/third_party/python/Lib/test/support/ |
D | testresult.py | 113 def addSkip(self, test, reason): member in RegressionTestResult 115 super().addSkip(test, reason)
|
/third_party/protobuf/python/google/protobuf/internal/ |
D | testing_refleaks.py | 68 def addSkip(self, test, reason): member in LocalTestResult
|
/third_party/python/Tools/unittestgui/ |
D | unittestgui.py | 171 def addSkip(self, test, reason): member in GUITestResult 172 super(GUITestResult,self).addSkip(test, reason)
|
/third_party/python/Doc/library/ |
D | unittest.rst | 2093 .. method:: addSkip(test, reason)
|