@@ -292,7 +292,7 @@ def run_benchmarks(
292292 current_bin_path : PathLike ,
293293 previous_bin_path : PathLike ,
294294 examples_path : PathLike ,
295- output_path : PathLike ,
295+ out_path : PathLike ,
296296 excluded : list [str ] = [],
297297):
298298 """Benchmark current development version against previous release
@@ -303,7 +303,7 @@ def run_benchmarks(
303303 current_bin_path = Path (current_bin_path ).expanduser ().absolute ()
304304 previous_bin_path = Path (previous_bin_path ).expanduser ().absolute ()
305305 examples_path = Path (examples_path ).expanduser ().absolute ()
306- output_path = Path (output_path ).expanduser ().absolute ()
306+ out_path = Path (out_path ).expanduser ().absolute ()
307307
308308 example_dirs = get_model_paths (examples_path , excluded = excluded )
309309 if not any (example_dirs ):
@@ -322,7 +322,7 @@ def run_benchmarks(
322322 )
323323
324324 if not old_exe .is_file ():
325- version , download_path = fetch_latest (output_path )
325+ version , download_path = fetch_latest (out_path )
326326 print (f"Rebuilding latest MODFLOW 6 release { version } in development mode" )
327327 meson_build (
328328 project_path = download_path ,
@@ -360,7 +360,7 @@ def run_benchmarks(
360360 write_results (
361361 current_exe = dev_exe ,
362362 previous_exe = old_exe ,
363- output_path = output_path ,
363+ output_path = out_path ,
364364 current_total = current_total ,
365365 previous_total = previous_total ,
366366 lines = lines ,
@@ -374,7 +374,7 @@ def test_run_benchmarks(tmp_path):
374374 current_bin_path = BIN_PATH ,
375375 previous_bin_path = BIN_PATH / "rebuilt" ,
376376 examples_path = EXAMPLES_REPO_PATH / "examples" ,
377- output_path = tmp_path ,
377+ out_path = tmp_path ,
378378 excluded = ["previous" ],
379379 )
380380 assert (tmp_path / BENCHMARKS_FILE_NAME ).is_file ()
@@ -439,6 +439,6 @@ def test_run_benchmarks(tmp_path):
439439 current_bin_path = current_bin_path ,
440440 previous_bin_path = previous_bin_path ,
441441 examples_path = examples_repo_path / "examples" ,
442- output_path = output_path ,
442+ out_path = output_path ,
443443 excluded = ["previous" ],
444444 )
0 commit comments