(self)
| 31 | ) -> None: |
| 32 | class _Boom: |
| 33 | def fail(self) -> None: |
| 34 | raise RuntimeError("expected-failure") |
| 35 | |
| 36 | with sandbox(delete_on_exit=True) as sb: |
| 37 | result = sb.exec_python(_Boom().fail, timeout_seconds=20) |
no outgoing calls
no test coverage detected