test(ci): normalize setup overwrite assertion#898
Conversation
Signed-off-by: phernandez <paul@basicmachines.co>
|
Claude finished @phernandez's task in 48s —— View job PR Review
SummaryThis is a minimal, focused fix to make a CI test assertion resilient to Windows console line-wrapping. The change is correct and addresses an explicit item in our team checklist. The ProblemThe error message tested is generated in raise ValueError(f"{path} already exists; pass --force to overwrite")On Windows, The Fix# Before
assert "pass --force to overwrite" in result.output
# After
assert "pass --force to overwrite" in " ".join(result.output.split())
Checklist
VerdictApproved. The change is correct, minimal, and directly resolves the Windows CI flakiness. No issues found. |
Summary
Verification