This is an automated email from the ASF dual-hosted git repository.
honahx pushed a commit to branch pyiceberg-0.6.x
in repository https://gitbox.apache.org/repos/asf/iceberg-python.git
The following commit(s) were added to refs/heads/pyiceberg-0.6.x by this push:
new 20093c34 Fix Glue Integration test (#536)
20093c34 is described below
commit 20093c34eb0cb4f48f9a763dea869fda15980685
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 0e0fbd68..62444b45 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -1894,8 +1894,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: