Home | History | Annotate | Download | only in unittest2

Lines Matching defs:skip

26     Raise this exception in a test to skip it.
28 Usually you can use TestResult.skip() or one of the skipping decorators
59 def skip(reason):
61 Unconditionally skip a test.
77 Skip a test if the condition is true.
80 return skip(reason)
85 Skip a test unless the condition is true.
88 return skip(reason)
427 """Skip this test."""