You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When calling the assert_df_equality and assert_approx_df_equality it will be good to have the option to not display the get_string(). Sometimes the output might be to long or truncated.I think this could be a good addition.
Example of the idea:
DataFramesNotEqualError("\n" + t.get_string()) if full_log else DataFramesNotEqualError
Where full_log is boolean
The text was updated successfully, but these errors were encountered:
@slavyolov - thanks for opening the issue. I'm open to the suggestion, but not entirely sure I understand how the output will be different. Can you open a PR and show the output when full_log is true and the output when full_log is false, so I can better understand? Thanks!
When calling the assert_df_equality and assert_approx_df_equality it will be good to have the option to not display the get_string(). Sometimes the output might be to long or truncated.I think this could be a good addition.
Example of the idea:
DataFramesNotEqualError("\n" + t.get_string()) if full_log else DataFramesNotEqualError
The text was updated successfully, but these errors were encountered: