Return True if the given object has been marked with @unittest.skip.
(obj)
| 401 | |
| 402 | |
| 403 | def _is_skipped(obj) -> bool: |
| 404 | """Return True if the given object has been marked with @unittest.skip.""" |
| 405 | return bool(getattr(obj, "__unittest_skip__", False)) |