(self, *args, **kwargs)
| 35 | |
| 36 | @wraps(func) |
| 37 | def decorated(self, *args, **kwargs): |
| 38 | if condition(self): |
| 39 | explanation_str = name |
| 40 | if note: |
| 41 | explanation_str += ': %s' % note |
| 42 | self.skipTest(explanation_str) |
| 43 | return func(self, *args, **kwargs) |
| 44 | |
| 45 | return decorated |
| 46 |
nothing calls this directly
no test coverage detected