Searched refs:addSkip (Results 1 - 8 of 8) sorted by relevance
/third_party/python/Lib/unittest/test/ |
H A D | support.py | 73 def addSkip(self, *args): member in _BaseLoggingResult 74 self._events.append('addSkip') 75 super().addSkip(*args)
|
/third_party/python/Lib/unittest/ |
H A 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))
|
H A D | runner.py | 113 def addSkip(self, test, reason): member in TextTestResult 114 super(TextTestResult, self).addSkip(test, reason)
|
H A D | result.py | 146 def addSkip(self, test, reason): member in TestResult
|
H A D | case.py | 86 addSkip = getattr(result, 'addSkip', None) 87 if addSkip is not None: 88 addSkip(test_case, reason) 90 warnings.warn("TestResult has no addSkip method, skips not reported",
|
/third_party/python/Lib/test/support/ |
H A D | testresult.py | 113 def addSkip(self, test, reason): member in RegressionTestResult 115 super().addSkip(test, reason)
|
/third_party/protobuf/python/google/protobuf/internal/ |
H A D | testing_refleaks.py | 68 def addSkip(self, test, reason): member in LocalTestResult
|
/third_party/python/Tools/unittestgui/ |
H A D | unittestgui.py | 171 def addSkip(self, test, reason): member in GUITestResult 172 super(GUITestResult,self).addSkip(test, reason)
|
Completed in 6 milliseconds