We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent add97a3 commit a8f2d61Copy full SHA for a8f2d61
polaris/run/serial.py
@@ -696,8 +696,10 @@ def _write_output_for_pull_request(
696
697
# Try to include job scheduler log path for Slurm
698
job_log = _derive_job_log_path(suite_name, suite)
699
- if job_log:
+ if job_log and os.path.exists(job_log):
700
lines.append(f'- Log: `{job_log}`')
701
+ else:
702
+ lines.append('- Log: not found')
703
704
# If we have results, summarize them
705
if results is not None and isinstance(results, dict):
0 commit comments