Raise this exception in a test to skip it. Usually you can use TestCase.skipTest() or one of the skipping decorators instead of raising this directly.
| 29 | 'Set self.maxDiff to None to see it.') |
| 30 | |
| 31 | class SkipTest(Exception): |
| 32 | """ |
| 33 | Raise this exception in a test to skip it. |
| 34 | |
| 35 | Usually you can use TestCase.skipTest() or one of the skipping decorators |
| 36 | instead of raising this directly. |
| 37 | """ |
| 38 | |
| 39 | class _ShouldStop(Exception): |
| 40 | """ |
no outgoing calls
no test coverage detected