This is an automated email from the ASF dual-hosted git repository.
fokko pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
The following commit(s) were added to refs/heads/main by this push:
new bbc7e7c8 Fix Glue Integration test (#536)
bbc7e7c8 is described below
commit bbc7e7c8d095b4afea5c27e6de324d008aa2d803
Author: Honah J <[email protected]>
AuthorDate: Wed Mar 20 00:56:44 2024 -0700
Fix Glue Integration test (#536)
* Fix integration_glue_test
* fix lint
---
tests/conftest.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/conftest.py b/tests/conftest.py
index e090e7c0..205cd220 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -1858,8 +1858,8 @@ def get_s3_path(bucket_name: str, database_name:
Optional[str] = None, table_nam
@pytest.fixture(name="s3", scope="module")
def fixture_s3_client() -> boto3.client:
- with mock_aws():
- yield boto3.client("s3")
+ """Real S3 client for AWS Integration Tests."""
+ yield boto3.client("s3")
def clean_up(test_catalog: Catalog) -> None: