()
| 11 | |
| 12 | @pytest.fixture |
| 13 | def tctx() -> context.Context: |
| 14 | opts = options.Options() |
| 15 | Proxyserver().load(opts) |
| 16 | return context.Context( |
| 17 | connection.Client( |
| 18 | peername=("client", 1234), |
| 19 | sockname=("127.0.0.1", 8080), |
| 20 | timestamp_start=1605699329, |
| 21 | state=connection.ConnectionState.OPEN, |
| 22 | ), |
| 23 | opts, |
| 24 | ) |
| 25 | |
| 26 | |
| 27 | settings.register_profile("fast", max_examples=10, deadline=None) |
nothing calls this directly
no test coverage detected
searching dependent graphs…