()
| 156 | |
| 157 | @pytest.fixture(scope='session') |
| 158 | def s3_connection(): |
| 159 | host, port = '127.0.0.1', find_free_port() |
| 160 | access_key, secret_key = 'arrow', 'apachearrow' |
| 161 | return host, port, access_key, secret_key |
| 162 | |
| 163 | |
| 164 | def retry(attempts=3, delay=1.0, max_delay=None, backoff=1): |
nothing calls this directly
no test coverage detected