Skip to content

Commit a76ed20

Browse files
committed
Add additional columns to drop from output
1 parent 063b597 commit a76ed20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/jobs/housing/housing_nec_migration_apply_gx_dq_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def main():
7575
results_dict = list(checkpoint_result.run_results.values())[0].to_json_dict()
7676
table_results_df = pd.json_normalize(results_dict['results'])
7777
cols_to_drop = [c for c in table_results_df.columns if c.startswith('exception_info')]
78-
cols_to_drop.append('result.unexpected_list')
78+
cols_to_drop.extend(['result.unexpected_list', 'result.details_mismatched', 'result.observed_value'])
7979
table_results_df = table_results_df.drop(columns=cols_to_drop)
8080
table_results_df_list.append(table_results_df)
8181

0 commit comments

Comments
 (0)