gpt-5.3-codex review phase 1 (revised)
Quality Gate / gate (push) Successful in 35s

This commit is contained in:
Jim Lancaster
2026-08-19 15:28:51 -05:00
parent 5404224079
commit c261fbb3bd
12 changed files with 138 additions and 20 deletions
+7 -4
View File
@@ -95,12 +95,15 @@ class TestWorkflowReliability:
async with services.jobs._session_scope() as session:
attempts = (
await session.execute(
select(ExecutionAttempt).where(
col(ExecutionAttempt.job_source_id).in_([js.id for js in result.job_sources])
(
await session.exec(
select(ExecutionAttempt).where(
col(ExecutionAttempt.job_source_id).in_([js.id for js in result.job_sources])
)
)
)
).scalars().all()
.all()
)
error_detail = next(attempt.error_detail for attempt in attempts if attempt.error_detail is not None)
assert "timed out" in error_detail.lower()
assert "20.0s" in error_detail