Skip to content

Commit 20093c3

Browse files
committed
Fix Glue Integration test (#536)
* Fix integration_glue_test * fix lint
1 parent b983e66 commit 20093c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1894,8 +1894,8 @@ def get_s3_path(bucket_name: str, database_name: Optional[str] = None, table_nam
18941894

18951895
@pytest.fixture(name="s3", scope="module")
18961896
def fixture_s3_client() -> boto3.client:
1897-
with mock_aws():
1898-
yield boto3.client("s3")
1897+
"""Real S3 client for AWS Integration Tests."""
1898+
yield boto3.client("s3")
18991899

19001900

19011901
def clean_up(test_catalog: Catalog) -> None:

0 commit comments

Comments
 (0)