Commit 0249c6f
committed
fix: e2e_report_steps must use same path pattern as step tracking functions
The bug: e2e_step_start/end write to absolute paths based on REPO_ROOT,
but e2e_report_steps was reading from relative 'reports/steps'.
Result: Steps ran and wrote status files, but summary couldn't find them,
reporting 'Step never executed' even for successful steps.
Fixed by:
- Update e2e_report_steps to use same path: ${E2E_STEPS_DIR:-${REPO_ROOT:-.}/reports/steps}
- Update diagnostic logs path for consistency
- Remove unused _step_dir variable from build-node
This ensures both writing and reading use the same absolute paths.1 parent 7cd10d4 commit 0249c6f
2 files changed
Lines changed: 2 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
62 | | - | |
63 | | - | |
64 | 62 | | |
65 | 63 | | |
66 | 64 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
258 | 258 | | |
259 | 259 | | |
260 | 260 | | |
261 | | - | |
| 261 | + | |
262 | 262 | | |
263 | 263 | | |
264 | 264 | | |
| |||
336 | 336 | | |
337 | 337 | | |
338 | 338 | | |
339 | | - | |
| 339 | + | |
340 | 340 | | |
341 | 341 | | |
342 | 342 | | |
| |||
0 commit comments