Skip to content

Commit

Permalink
Try increasing timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
dandavison committed Jun 25, 2024
1 parent cf5b158 commit caed0ff
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/worker/test_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -5285,7 +5285,9 @@ async def test_unfinished_handlers_cause_exceptions_in_test_suite(self):
)
)
await assert_eq_eventually(
True, partial(self._workflow_task_failed, workflow_id=(await handle).id)
True,
partial(self._workflow_task_failed, workflow_id=(await handle).id),
timeout=timedelta(seconds=20),
)

async def _workflow_task_failed(self, workflow_id: str) -> bool:
Expand Down

0 comments on commit caed0ff

Please sign in to comment.