(*args, **kwargs)
| 134 | import nose |
| 135 | |
| 136 | def knownfailer(*args, **kwargs): |
| 137 | if fail_condition: |
| 138 | raise KnownFailureTest(msg) |
| 139 | else: |
| 140 | return f(*args, **kwargs) |
| 141 | return nose.tools.make_decorator(f)(knownfailer) |
| 142 | |
| 143 | return knownfail_decorator |
nothing calls this directly
no test coverage detected