Created
November 27, 2021 11:05
-
-
Save kshitijcode/4b6540fa33003d3ead18f4a39efe4cc9 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 == 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment