(obj)
| 868 | def client_pass(*args, **kwargs): |
| 869 | pass |
| 870 | def skipdec(obj): |
| 871 | retval = unittest.skip(reason)(obj) |
| 872 | if not isinstance(obj, type): |
| 873 | retval.client_skip = lambda f: client_pass |
| 874 | return retval |
| 875 | def noskipdec(obj): |
| 876 | if not (isinstance(obj, type) or hasattr(obj, "client_skip")): |
| 877 | obj.client_skip = lambda f: f |
nothing calls this directly
no test coverage detected
searching dependent graphs…