Skip to content

Commit

Permalink
Ignore resolve in test
Browse files Browse the repository at this point in the history
  • Loading branch information
benedikt-schesch committed Sep 10, 2024
1 parent 679bbfe commit 0f587a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/check_equal_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def remove_run_time(df):
different_columns = []
all_columns = set(goal_df.columns) | set(actual_df.columns)
for col in all_columns:
if "intellimerge" in col or "run_time" in col:
if "intellimerge" in col or "run_time" in col or "resolve" in col:
continue
if col not in goal_df:
print(f"Column {col} is in actual_df but not in goal_df")
Expand All @@ -65,7 +65,7 @@ def remove_run_time(df):
raise ValueError("goal_df and actual_df have different columns or values")

for col in goal_df.columns:
if "intellimerge" in col:
if "intellimerge" in col or "resolve" in col:
continue
# Check if the columns are equal
if actual_df[col].equals(goal_df[col]):
Expand Down

0 comments on commit 0f587a1

Please sign in to comment.