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.
| 24 | 'Set self.maxDiff to None to see it.') |
| 25 | |
| 26 | class SkipTest(Exception): |
| 27 | """ |
| 28 | Raise this exception in a test to skip it. |
| 29 | |
| 30 | Usually you can use TestCase.skipTest() or one of the skipping decorators |
| 31 | instead of raising this directly. |
| 32 | """ |
| 33 | |
| 34 | class _ShouldStop(Exception): |
| 35 | """ |
no outgoing calls
searching dependent graphs…