File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,7 @@ def main():
110110 results_dict = list (checkpoint_result .run_results .values ())[0 ].to_json_dict ()
111111 table_results_df = pd .json_normalize (results_dict ['results' ])
112112 cols_to_drop = [c for c in table_results_df .columns if c .startswith ('exception_info' )]
113+ cols_to_drop .append ('result.unexpected_list' )
113114 table_results_df = table_results_df .drop (columns = cols_to_drop )
114115 table_results_df_list .append (table_results_df )
115116
@@ -151,7 +152,6 @@ def main():
151152 'result.unexpected_count' : 'bigint' ,
152153 'result.missing_count' : 'bigint' ,
153154 'result.partial_unexpected_list' : 'array<string>' ,
154- 'result.unexpected_list' : 'array<string>' ,
155155 'result.unexpected_index_list' : 'array<bigint>' ,
156156 'result.unexpected_index_query' : 'string' ,
157157 'expectation_config.kwargs.regex' : 'string' ,
You can’t perform that action at this time.
0 commit comments