From 8f344972e7e3dc285222058eb459e318dce3c874 Mon Sep 17 00:00:00 2001 From: April Shen Date: Wed, 6 Mar 2024 16:13:43 +0000 Subject: [PATCH] tell the user where the report is --- eva_sub_cli/validators/validator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/eva_sub_cli/validators/validator.py b/eva_sub_cli/validators/validator.py index b1f7760..ed84fa2 100755 --- a/eva_sub_cli/validators/validator.py +++ b/eva_sub_cli/validators/validator.py @@ -450,4 +450,5 @@ def create_reports(self): file_path = os.path.join(self.output_dir, 'report.html') with open(file_path, "w") as f: f.write(report_html) + self.info(f'View the validation report: {file_path}') return file_path