Add performance tests for produciton (merge latest development efforts)

This commit is contained in:
Oliver Falk
2025-10-22 12:52:29 +02:00
parent 5119328346
commit 13165579e8
5 changed files with 885 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,