()
| 548 | |
| 549 | |
| 550 | def test_pytest_exit() -> None: |
| 551 | with pytest.raises(pytest.exit.Exception) as excinfo: |
| 552 | pytest.exit("hello") |
| 553 | assert excinfo.errisinstance(pytest.exit.Exception) |
| 554 | |
| 555 | |
| 556 | def test_pytest_fail() -> None: |
nothing calls this directly
no test coverage detected