Skip to content

Commit 807f511

Browse files
committed
fix merging csvs.
1 parent 8161e36 commit 807f511

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

benchmarks/run_all.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ def run_command(command: list[str], return_stdout=False):
2929

3030
def merge_csvs(final_csv: str = "collated_results.csv"):
3131
all_csvs = glob.glob("*.csv")
32+
all_csvs = [f for f in all_csvs if f != final_csv]
3233
if not all_csvs:
3334
logger.info("No result CSVs found to merge.")
3435
return

0 commit comments

Comments
 (0)