Skip to content

Commit f7e2a7c

Browse files
Change parse_vtr_task error message to be more consistent
1 parent 8ea5d72 commit f7e2a7c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

vtr_flow/scripts/python_libs/vtr/parse_vtr_task.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,10 +438,15 @@ def check_two_files(
438438
first_metrics = first_results.metrics(arch, circuit, script_params)
439439

440440
if first_metrics is None:
441-
num_qor_failures += 1
441+
print(
442+
"\n{}...[Fail]".format(
443+
"/".join(str((Path(config.config_dir).parent)).split("/")[-3:])
444+
)
445+
)
442446
print("Required case {}/{} missing from {} results: {}".format(
443447
arch, circuit, first_name, first_results_filepath
444448
))
449+
num_qor_failures += 1
445450
continue
446451

447452
first_fail = True

0 commit comments

Comments
 (0)