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
dynamo
Commits
5f98e91e
Unverified
Commit
5f98e91e
authored
Oct 23, 2025
by
Richard Huo
Committed by
GitHub
Oct 23, 2025
Browse files
test: fix KV Router and KVBM tests in CI (#3848)
parent
4e496691
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
tests/kvbm/test_determinism_disagg.py
tests/kvbm/test_determinism_disagg.py
+4
-2
tests/serve/test_sglang.py
tests/serve/test_sglang.py
+1
-1
tests/serve/test_vllm.py
tests/serve/test_vllm.py
+1
-1
No files found.
tests/kvbm/test_determinism_disagg.py
View file @
5f98e91e
...
...
@@ -223,8 +223,10 @@ class LLMServerManager:
)
print
(
f
"Decoder process started with PID:
{
self
.
process_decoder
.
pid
}
"
)
# Give decoder time to start up
time
.
sleep
(
5
)
# The prefiller and decoder cannot download the model simultaneously,
# because the Hugging Face rust library (invoked by fetch_llm) needs to hold an exclusive lock on the model files.
print
(
"Sleeping for 60 seconds to allow the decoder to download the model. "
)
time
.
sleep
(
60
)
# Launch prefiller
self
.
process_prefiller
=
subprocess
.
Popen
(
...
...
tests/serve/test_sglang.py
View file @
5f98e91e
...
...
@@ -71,7 +71,7 @@ sglang_configs = {
request_payloads
=
[
chat_payload_default
(
expected_log
=
[
r
"ZMQ listener .* received batch with \d+ events \(seq=\d+\)"
,
r
"ZMQ listener .* received batch with \d+ events \(seq=\d+
(?:, [^)]*)?
\)"
,
r
"Event processor for worker_id \d+ processing event: Stored\("
,
r
"Selected worker: worker_id=\d+ dp_rank=.*?, logit: "
,
]
...
...
tests/serve/test_vllm.py
View file @
5f98e91e
...
...
@@ -51,7 +51,7 @@ vllm_configs = {
request_payloads
=
[
chat_payload_default
(
expected_log
=
[
r
"ZMQ listener .* received batch with \d+ events \(seq=\d+\)"
,
r
"ZMQ listener .* received batch with \d+ events \(seq=\d+
(?:, [^)]*)?
\)"
,
r
"Event processor for worker_id \d+ processing event: Stored\("
,
r
"Selected worker: worker_id=\d+ dp_rank=.*?, logit: "
,
]
...
...
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