From ad9138804bdcfc6c8c125ffdac9898a399ab4cd2 Mon Sep 17 00:00:00 2001 From: Simon Lin Date: Wed, 22 Jan 2025 23:11:39 +1100 Subject: [PATCH] c --- py-polars/tests/unit/io/cloud/test_credential_provider.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/py-polars/tests/unit/io/cloud/test_credential_provider.py b/py-polars/tests/unit/io/cloud/test_credential_provider.py index 43d845070994..2101964fbc39 100644 --- a/py-polars/tests/unit/io/cloud/test_credential_provider.py +++ b/py-polars/tests/unit/io/cloud/test_credential_provider.py @@ -37,7 +37,11 @@ def raises(*_: None, **__: None) -> None: io_func("s3://bucket/path", credential_provider=None) # Passing `storage_options` should disable the automatic instantiation of # `CredentialProviderAWS` - io_func("s3://bucket/path", credential_provider="auto", storage_options={}) + io_func( + "s3://bucket/path", + credential_provider="auto", + storage_options={"aws_access_key_id": "polars"}, + ) err_magic = "err_magic_7"