mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35:00 +00:00
feat: optimize find_latest_benchmark_dir to check only .md files and limit to one file per subtree
This commit is contained in:
parent
e21cdafb15
commit
ed7503dbbe
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ def find_latest_benchmark_dir():
|
|||
|
||||
latest_dir = max(
|
||||
benchmark_dirs,
|
||||
key=lambda d: max(f.stat().st_mtime for f in d.rglob("*") if f.is_file()),
|
||||
key=lambda d: next((f.stat().st_mtime for f in d.rglob("*.md") if f.is_file()), 0),
|
||||
)
|
||||
print(f"Using the most recently updated benchmark directory: {latest_dir.name}")
|
||||
return latest_dir
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue