Skip to content

Commit

Permalink
Fix reproducibility checks
Browse files Browse the repository at this point in the history
  • Loading branch information
benedikt-schesch committed Sep 10, 2024
1 parent 4b23092 commit d5b27a1
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/python/replay_merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,7 @@ def merge_replay(

for merge_tool in MERGE_TOOL:
if testing:
if merge_tool == MERGE_TOOL.spork:
continue
if merge_tool == MERGE_TOOL.intellimerge:
if "spork" in merge_tool.name or "intellimerge" in merge_tool.name:
continue
progress.update(task, advance=1)
workdir = Path(
Expand Down Expand Up @@ -298,10 +296,10 @@ def merge_replay(
!= merge_fingerprint
and not dont_check_fingerprints
)
and (merge_tool != MERGE_TOOL.spork)
and (merge_tool != MERGE_TOOL.intellimerge)
and ("spork" not in merge_tool.name)
and ("intellimerge" not in merge_tool.name)
and (
merge_tool != MERGE_TOOL.gitmerge_resolve
"resolve" not in merge_tool.name
or merge_result != MERGE_STATE.Merge_failed
)
):
Expand Down

0 comments on commit d5b27a1

Please sign in to comment.