(request)
| 28 | |
| 29 | @pytest.fixture(scope="function") |
| 30 | def client(request) -> Iterator[InsertValuesJobClient]: |
| 31 | yield from yield_client_with_storage(request.param.destination_factory()) # type: ignore[misc] |
| 32 | |
| 33 | |
| 34 | @pytest.mark.essential |
nothing calls this directly
no test coverage detected