We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8161e36 commit 807f511Copy full SHA for 807f511
benchmarks/run_all.py
@@ -29,6 +29,7 @@ def run_command(command: list[str], return_stdout=False):
29
30
def merge_csvs(final_csv: str = "collated_results.csv"):
31
all_csvs = glob.glob("*.csv")
32
+ all_csvs = [f for f in all_csvs if f != final_csv]
33
if not all_csvs:
34
logger.info("No result CSVs found to merge.")
35
return
0 commit comments