Skip to content

Instantly share code, notes, and snippets.

@kshitijcode
Created November 27, 2021 11:05
Show Gist options
  • Select an option

  • Save kshitijcode/4b6540fa33003d3ead18f4a39efe4cc9 to your computer and use it in GitHub Desktop.

Select an option

Save kshitijcode/4b6540fa33003d3ead18f4a39efe4cc9 to your computer and use it in GitHub Desktop.
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 == 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment