Skip to content

Commit

Permalink
Update test_delta_lake_abs.py
Browse files Browse the repository at this point in the history
  • Loading branch information
acrylJonny committed Nov 5, 2024
1 parent 763a620 commit e5a968b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,7 @@ def populate_azure_storage(pytestconfig, azure_container):
try:
with open(full_path, "rb") as data:
azure_container.upload_blob(
name=rel_path,
data=data,
overwrite=True
name=rel_path, data=data, overwrite=True
)
logger.info(f"Uploaded {rel_path}")
except Exception as e:
Expand Down Expand Up @@ -125,7 +123,9 @@ def test_delta_lake_ingest_azure(pytestconfig, tmp_path, test_resources_dir):
}
)

logger.info(f"Starting pipeline run with base_path: {pipeline.config['source']['config']['base_path']}")
logger.info(
f"Starting pipeline run with base_path: {pipeline.config['source']['config']['base_path']}"
)
pipeline.run()
pipeline.raise_from_status()

Expand Down

0 comments on commit e5a968b

Please sign in to comment.