(exc: BaseException)
| 1347 | raise |
| 1348 | |
| 1349 | async def inner(exc: BaseException) -> None: |
| 1350 | with suppress(ValueError): |
| 1351 | await sleep_forever() |
| 1352 | assert not_none(sys.exc_info()[1]) is exc |
| 1353 | |
| 1354 | with pytest.RaisesGroup( |
| 1355 | pytest.RaisesExc(KeyError, check=lambda e: e.__context__ is None) |
no test coverage detected
searching dependent graphs…