Home
last modified time | relevance | path

Searched refs:addSkip (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Lib/unittest/test/
Dsupport.py73 def addSkip(self, *args): member in _BaseLoggingResult
75 super().addSkip(*args)
/third_party/python/Lib/unittest/
Dsuite.py241 addSkip = getattr(result, 'addSkip', None)
242 if addSkip is not None and isinstance(exception, case.SkipTest):
243 addSkip(error, str(exception))
Drunner.py85 def addSkip(self, test, reason): member in TextTestResult
86 super(TextTestResult, self).addSkip(test, reason)
Dresult.py146 def addSkip(self, test, reason): member in TestResult
Dcase.py471 addSkip = getattr(result, 'addSkip', None)
472 if addSkip is not None:
473 addSkip(test_case, reason)
/third_party/python/Lib/test/support/
Dtestresult.py113 def addSkip(self, test, reason): member in RegressionTestResult
115 super().addSkip(test, reason)
/third_party/protobuf/python/google/protobuf/internal/
Dtesting_refleaks.py68 def addSkip(self, test, reason): member in LocalTestResult
/third_party/python/Tools/unittestgui/
Dunittestgui.py171 def addSkip(self, test, reason): member in GUITestResult
172 super(GUITestResult,self).addSkip(test, reason)
/third_party/python/Doc/library/
Dunittest.rst2093 .. method:: addSkip(test, reason)