diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e07dabe..a5d455f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -32,4 +32,4 @@ jobs: uses: JRubics/poetry-publish@v2.0 with: pypi_token: ${{ secrets.PYPI_TOKEN }} - poetry_publish_options: "--dry-run" \ No newline at end of file + poetry_publish_options: "--dry-run" diff --git a/tests/test_http_provider.py b/tests/test_http_provider.py index 563c13b..a73d314 100644 --- a/tests/test_http_provider.py +++ b/tests/test_http_provider.py @@ -38,7 +38,8 @@ def test_nothing_works(self, make_post_request): [ "http://127.0.0.1:9001", "http://127.0.0.1:9002", - ] + ], + exception_retry_configuration=None, ) w3 = Web3(provider) @@ -55,7 +56,8 @@ def one_provider_works(self, provider_class): [ "http://127.0.0.1:9001", "http://127.0.0.1:9000", - ] + ], + exception_retry_configuration=None, ) w3 = Web3(provider)