Add performance tests

This commit is contained in:
Oliver Falk
2025-10-22 11:56:54 +02:00
parent f8f8beb52e
commit 4103fcff55
5 changed files with 875 additions and 7 deletions

View File

@@ -93,7 +93,7 @@ def is_commit_newer_or_equal(commit1: str, commit2: str) -> Optional[bool]:
except subprocess.CalledProcessError:
# If the above fails, try the reverse - check if commit2 is newer
try:
result = subprocess.run(
subprocess.run(
["git", "merge-base", "--is-ancestor", commit1, commit2],
capture_output=True,
check=True,