File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -387,8 +387,11 @@ async def download_missing_schemas(versions: Iterable[Version], gh_token: str |
387387update_references_all_schemas (current_json_schemas )
388388schemas = [current_json_schemas , * asyncio .run (download_missing_schemas (last_versions , gh_token ))]
389389changes = [diff_schemas (schemas_1 , schemas_2 ) for schemas_1 , schemas_2 in pairwise (reversed (schemas ))]
390- for changes_obj in changes :
391- write_changes (changes_obj , changes_base_dir / f"{ changes_obj .old_version } _to_{ changes_obj .new_version } .json" )
390+
391+ # Comment this out if you want to write the changes to files. Helpful for debugging.
392+ # for changes_obj in changes:
393+ # write_changes(changes_obj, changes_base_dir / f"{changes_obj.old_version}_to_{changes_obj.new_version}.json")
394+
392395graph = create_graph_from_changes (iter (changes ))
393396graph_path = get_path_through_di_path_graph (graph )
394397compatibility_matrix = create_compatibility_matrix (graph , graph_path , use_emotes = True )
You can’t perform that action at this time.
0 commit comments