Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
1447c97e
Unverified
Commit
1447c97e
authored
Sep 06, 2024
by
Alexey Kondratiev(AMD)
Committed by
GitHub
Sep 06, 2024
Browse files
[CI/Build] Increasing timeout for multiproc worker tests (#8203)
parent
de80783b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
tests/engine/test_multiproc_workers.py
tests/engine/test_multiproc_workers.py
+3
-3
No files found.
tests/engine/test_multiproc_workers.py
View file @
1447c97e
...
...
@@ -83,7 +83,7 @@ def test_local_workers() -> None:
workers
[
3
].
process
.
kill
()
# Other workers should get shut down here
worker_monitor
.
join
(
2
)
worker_monitor
.
join
(
2
0
)
# Ensure everything is stopped
assert
not
worker_monitor
.
is_alive
()
...
...
@@ -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
()
...
...
@@ -161,7 +161,7 @@ async def test_local_workers_async() -> None:
workers
[
3
].
process
.
kill
()
# Other workers should get shut down here
worker_monitor
.
join
(
2
)
worker_monitor
.
join
(
2
0
)
# Ensure everything is stopped
assert
not
worker_monitor
.
is_alive
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment