(base_app)
| 1123 | |
| 1124 | |
| 1125 | def test_raise_keyboard_interrupt(base_app) -> None: |
| 1126 | with pytest.raises(KeyboardInterrupt) as excinfo: |
| 1127 | base_app._raise_keyboard_interrupt() |
| 1128 | assert "Got a keyboard interrupt" in str(excinfo.value) |
| 1129 | |
| 1130 | |
| 1131 | @pytest.mark.skipif(sys.platform.startswith("win"), reason="SIGTERM only handled on Linux/Mac") |
nothing calls this directly
no test coverage detected
searching dependent graphs…