Skip to content

Commit

Permalink
Insrease timeout for occasionally failing Dask test (#21051)
Browse files Browse the repository at this point in the history
  • Loading branch information
potiuk committed Jan 23, 2022
1 parent 6886d4a commit 795a6bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/executors/test_dask_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def test_dask_queues(self):
success_future = next(k for k, v in executor.futures.items() if v == 'success')

# wait for the futures to execute, with a timeout
timeout = timezone.utcnow() + timedelta(seconds=30)
timeout = timezone.utcnow() + timedelta(seconds=120)
while not success_future.done():
if timezone.utcnow() > timeout:
raise ValueError(
Expand Down

0 comments on commit 795a6bb

Please sign in to comment.