Skip to content

Commit 38c8ba9

Browse files
author
Vasileios Karakasis
authored
Merge pull request #2016 from jgphpc/github_issue1947_failures
[feat] Print the run report location at the end of a session
2 parents 9fad84c + 4e434cd commit 38c8ba9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

reframe/frontend/cli.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def list_tags(testcases, printer):
134134

135135
def logfiles_message():
136136
log_files = logging.log_files()
137-
msg = 'Log file(s) saved in: '
137+
msg = 'Log file(s) saved in '
138138
if not log_files:
139139
msg += '<no log file was generated>'
140140
else:
@@ -1092,6 +1092,8 @@ def module_unuse(*paths):
10921092
with open(report_file, 'w') as fp:
10931093
jsonext.dump(json_report, fp, indent=2)
10941094
fp.write('\n')
1095+
1096+
printer.info(f'Run report saved in {report_file!r}')
10951097
except OSError as e:
10961098
printer.warning(
10971099
f'failed to generate report in {report_file!r}: {e}'

0 commit comments

Comments
 (0)