mirror of
https://github.com/A6-9V/MQL5-Google-Onedrive.git
synced 2026-04-11 04:30:56 +00:00
- Ran git performance benchmarks verifying ref retrieval optimization. - Validated repository structure and source file integrity via CI scripts. - Verified automation integration and web dashboard caching mechanisms. - Updated benchmark_git.py with version checks and proper exit codes. - Confirmed that current codebase follows performance best practices documented in .jules/bolt.md.
39 lines
1.3 KiB
Python
39 lines
1.3 KiB
Python
|
|
import subprocess
|
|
import time
|
|
import sys
|
|
|
|
def run_command(cmd):
|
|
start = time.time()
|
|
subprocess.run(cmd, capture_output=True)
|
|
end = time.time()
|
|
return end - start
|
|
|
|
def main():
|
|
"""Run performance benchmarks for git commands."""
|
|
print("Benchmarking git commands...")
|
|
|
|
# Check git version for ahead-behind support (requires 2.41+)
|
|
try:
|
|
version_output = subprocess.run(["git", "--version"], capture_output=True, text=True).stdout
|
|
print(f"Git version: {version_output.strip()}")
|
|
except Exception:
|
|
print("Could not determine git version")
|
|
|
|
# Baseline: current implementation (all refs)
|
|
cmd_all = ["git", "for-each-ref", "--format=%(refname:short)|%(committerdate:iso8601)|%(ahead-behind:origin/main)", "refs/remotes/origin"]
|
|
time_all = run_command(cmd_all)
|
|
print(f"Time for all refs: {time_all:.4f}s")
|
|
|
|
# Optimized: only unmerged refs
|
|
cmd_unmerged = ["git", "for-each-ref", "--no-merged", "origin/main", "--format=%(refname:short)|%(committerdate:iso8601)|%(ahead-behind:origin/main)", "refs/remotes/origin"]
|
|
time_unmerged = run_command(cmd_unmerged)
|
|
print(f"Time for unmerged refs: {time_unmerged:.4f}s")
|
|
|
|
diff = time_all - time_unmerged
|
|
print(f"Difference: {diff:.4f}s")
|
|
|
|
return 0
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|