Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI/Build] Increasing timeout for multiproc worker tests #8203

Merged
merged 2 commits into from
Sep 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading