diff --git a/benchmark/benchmark.py b/benchmark/benchmark.py index 78db4403a..102e6d046 100755 --- a/benchmark/benchmark.py +++ b/benchmark/benchmark.py @@ -49,7 +49,7 @@ def find_latest_benchmark_dir(): latest_dir = max( benchmark_dirs, - key=lambda d: next((f.stat().st_mtime for f in d.rglob("*.md") if f.is_file()), 0), + key=lambda d: next((f.stat().st_mtime for f in d.glob("*/.*.md") if f.is_file()), 0), ) print(f"Using the most recently updated benchmark directory: {latest_dir.name}") return latest_dir