Home | History | Annotate | Download | only in unittest

Lines Matching refs:SkipTest

25 class SkipTest(Exception):
29 Usually you can use TestCase.skipTest() or one of the skipping decorators
62 raise SkipTest(reason)
323 except SkipTest as e:
352 except SkipTest as e:
406 def skipTest(self, reason):
408 raise SkipTest(reason)