(obj)
| 857 | def client_pass(*args, **kwargs): |
| 858 | pass |
| 859 | def skipdec(obj): |
| 860 | retval = unittest.skip(reason)(obj) |
| 861 | if not isinstance(obj, type): |
| 862 | retval.client_skip = lambda f: client_pass |
| 863 | return retval |
| 864 | def noskipdec(obj): |
| 865 | if not (isinstance(obj, type) or hasattr(obj, "client_skip")): |
| 866 | obj.client_skip = lambda f: f |
nothing calls this directly
no test coverage detected