Created
November 30, 2021 04:30
-
-
Save kshitijcode/4b6b0eaf8527beb82acad32212487713 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
assert pipeline_run_result == constants.PIPELINE_SUCCESS_STATUS | |
# Check for Data in Raw Zone | |
parquet_dataframe = adls.read_parquet_file_from_ADLS( | |
adls_connection_client, container_name, target_path) | |
num_of_rows = len(parquet_dataframe.index) | |
# Assert | |
print(f"Number of Rows Fetched : { num_of_rows }\n") | |
assert num_of_rows >=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment