()
| 686 | |
| 687 | |
| 688 | def test_exception_printing_skip() -> None: |
| 689 | assert pytest.skip.Exception == pytest.skip.Exception |
| 690 | try: |
| 691 | pytest.skip("hello") |
| 692 | except pytest.skip.Exception: |
| 693 | excinfo = ExceptionInfo.from_current() |
| 694 | s = excinfo.exconly(tryshort=True) |
| 695 | assert s.startswith("Skipped") |
| 696 | |
| 697 | |
| 698 | def test_importorskip(monkeypatch) -> None: |
nothing calls this directly
no test coverage detected