(*args, **kwargs)
| 160 | if not isinstance(test_item, type): |
| 161 | @functools.wraps(test_item) |
| 162 | def skip_wrapper(*args, **kwargs): |
| 163 | raise SkipTest(reason) |
| 164 | test_item = skip_wrapper |
| 165 | |
| 166 | test_item.__unittest_skip__ = True |
nothing calls this directly
no test coverage detected
searching dependent graphs…