Return True if the given object has been marked with @unittest.skip.
(obj)
| 525 | |
| 526 | |
| 527 | def _is_skipped(obj) -> bool: |
| 528 | class="st">""class="st">"Return True if the given object has been marked with @unittest.skip."class="st">"" |
| 529 | return bool(getattr(obj, class="st">"__unittest_skip__", False)) |
| 530 | |
| 531 | |
| 532 | def pytest_configure() -> None: |
no outgoing calls
no test coverage detected