Skip to content

Commit

Permalink
Add additional printing for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
rbiseck3 committed Oct 23, 2024
1 parent 8249c38 commit 734531a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/integration/connectors/utils/validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ def pandas_df_equality_check(expected_filepath: Path, current_filepath: Path) ->
diff = expected_df.merge(current_df, indicator=True, how="left").loc[
lambda x: x["_merge"] != "both"
]
print("expected dataframe:")
print(expected_df)
print("current dataframe:")
print(current_df)
print("diff between expected and current df:")
print(diff)
return False
Expand Down

0 comments on commit 734531a

Please sign in to comment.