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)
321 except SkipTest as e:
350 except SkipTest as e:
404 def skipTest(self, reason):
406 raise SkipTest(reason)