Skip to content

Commit bbc7e7c

Browse files
authored
Fix Glue Integration test (#536)
* Fix integration_glue_test * fix lint
1 parent 5506fd0 commit bbc7e7c

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
@@ -1858,8 +1858,8 @@ def get_s3_path(bucket_name: str, database_name: Optional[str] = None, table_nam
18581858

18591859
@pytest.fixture(name="s3", scope="module")
18601860
def fixture_s3_client() -> boto3.client:
1861-
with mock_aws():
1862-
yield boto3.client("s3")
1861+
"""Real S3 client for AWS Integration Tests."""
1862+
yield boto3.client("s3")
18631863

18641864

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

0 commit comments

Comments
 (0)