Skip to content

Commit

Permalink
Added latest data
Browse files Browse the repository at this point in the history
  • Loading branch information
benedikt-schesch committed May 24, 2024
1 parent c476491 commit 56fd0c2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
Binary file modified results/combined/merges_analyzer_histograms.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion src/python/utils/delete_intellimerge_keys_from_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def delete_import_keys(directory):

def main():
"""Main function."""
directory = "cache-small"
directory = "cache"
potential_deletions = count_import_keys(directory)
print(f"Potential deletions: {potential_deletions}")
confirm = input("Do you want to proceed with deleting these keys? (yes/no): ")
Expand Down
7 changes: 6 additions & 1 deletion test/check_equal_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@ def remove_run_time(df):
goal_df = remove_run_time(goal_df)
actual_df = remove_run_time(actual_df)

if not goal_df.equals(actual_df):
for col in goal_df.columns:
if "intellimerge" in col:
continue
# Check if the columns are equal
if actual_df[col].equals(goal_df[col]):
continue
# Print the differences.
print(os.system(f"diff {goal_folder/goal_file} {actual_file}"))
# Now print details, after diffs so it is not obscured by the diff output.
Expand Down

0 comments on commit 56fd0c2

Please sign in to comment.