(aconn)
| 98 | @pytest.mark.slow |
| 99 | @pytest.mark.timing |
| 100 | async def test_no_notify_timeout(aconn): |
| 101 | await aconn.set_autocommit(True) |
| 102 | t0 = time() |
| 103 | async for n in aconn.notifies(timeout=0.5): |
| 104 | assert False |
| 105 | dt = time() - t0 |
| 106 | assert 0.5 <= dt < 0.75 |
| 107 | |
| 108 | |
| 109 | @pytest.mark.slow |
nothing calls this directly
no test coverage detected