(timeout)
| 42 | |
| 43 | |
| 44 | def with_timeout(timeout): |
| 45 | def wrap(func): |
| 46 | func.__timeout__ = timeout |
| 47 | return func |
| 48 | |
| 49 | return wrap |
| 50 | |
| 51 | |
| 52 | class TestCaseMeta(type(unittest.TestCase)): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…