Skip to content

Commit

Permalink
[CI/Build] Increasing timeout for multiproc worker tests (#8203)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeykondrat committed Sep 6, 2024
1 parent de80783 commit 1447c97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/engine/test_multiproc_workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def execute_workers(worker_input: str) -> None:
workers[3].process.kill()

# Other workers should get shut down here
worker_monitor.join(2)
worker_monitor.join(20)

# Ensure everything is stopped
assert not worker_monitor.is_alive()
Expand All @@ -108,7 +108,7 @@ def test_local_workers_clean_shutdown() -> None:
# Clean shutdown
worker_monitor.close()

worker_monitor.join(5)
worker_monitor.join(20)

# Ensure everything is stopped
assert not worker_monitor.is_alive()
Expand Down Expand Up @@ -161,7 +161,7 @@ async def execute_workers(worker_input: str) -> None:
workers[3].process.kill()

# Other workers should get shut down here
worker_monitor.join(2)
worker_monitor.join(20)

# Ensure everything is stopped
assert not worker_monitor.is_alive()
Expand Down

0 comments on commit 1447c97

Please sign in to comment.