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
f9d57094
Unverified
Commit
f9d57094
authored
Feb 26, 2026
by
Dmitry Tokarev
Committed by
GitHub
Feb 26, 2026
Browse files
chore: Move some fault tolerance tests to nightly (#6636)
Signed-off-by:
Dmitry Tokarev
<
dtokarev@nvidia.com
>
parent
a671dbd4
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
7 deletions
+18
-7
tests/fault_tolerance/cancellation/test_sglang.py
tests/fault_tolerance/cancellation/test_sglang.py
+1
-1
tests/fault_tolerance/cancellation/test_trtllm.py
tests/fault_tolerance/cancellation/test_trtllm.py
+1
-1
tests/fault_tolerance/cancellation/test_vllm.py
tests/fault_tolerance/cancellation/test_vllm.py
+3
-1
tests/fault_tolerance/migration/test_sglang.py
tests/fault_tolerance/migration/test_sglang.py
+4
-1
tests/fault_tolerance/migration/test_trtllm.py
tests/fault_tolerance/migration/test_trtllm.py
+5
-2
tests/fault_tolerance/migration/test_vllm.py
tests/fault_tolerance/migration/test_vllm.py
+4
-1
No files found.
tests/fault_tolerance/cancellation/test_sglang.py
View file @
f9d57094
...
@@ -33,7 +33,7 @@ pytestmark = [
...
@@ -33,7 +33,7 @@ pytestmark = [
pytest
.
mark
.
sglang
,
pytest
.
mark
.
sglang
,
pytest
.
mark
.
e2e
,
pytest
.
mark
.
e2e
,
pytest
.
mark
.
model
(
FAULT_TOLERANCE_MODEL_NAME
),
pytest
.
mark
.
model
(
FAULT_TOLERANCE_MODEL_NAME
),
pytest
.
mark
.
post_merge
,
# post_merge to pinpoint failure commit
pytest
.
mark
.
nightly
,
pytest
.
mark
.
parametrize
(
"request_plane"
,
[
"nats"
,
"tcp"
],
indirect
=
True
),
pytest
.
mark
.
parametrize
(
"request_plane"
,
[
"nats"
,
"tcp"
],
indirect
=
True
),
]
]
...
...
tests/fault_tolerance/cancellation/test_trtllm.py
View file @
f9d57094
...
@@ -36,7 +36,7 @@ pytestmark = [
...
@@ -36,7 +36,7 @@ pytestmark = [
pytest
.
mark
.
gpu_1
,
pytest
.
mark
.
gpu_1
,
pytest
.
mark
.
e2e
,
pytest
.
mark
.
e2e
,
pytest
.
mark
.
model
(
FAULT_TOLERANCE_MODEL_NAME
),
pytest
.
mark
.
model
(
FAULT_TOLERANCE_MODEL_NAME
),
pytest
.
mark
.
post_merge
,
# post_merge to pinpoint failure commit
pytest
.
mark
.
nightly
,
pytest
.
mark
.
parametrize
(
"request_plane"
,
[
"nats"
,
"tcp"
],
indirect
=
True
),
pytest
.
mark
.
parametrize
(
"request_plane"
,
[
"nats"
,
"tcp"
],
indirect
=
True
),
pytest
.
mark
.
xfail
(
reason
=
"Cancellation is temporarily disabled"
,
strict
=
True
),
pytest
.
mark
.
xfail
(
reason
=
"Cancellation is temporarily disabled"
,
strict
=
True
),
]
]
...
...
tests/fault_tolerance/cancellation/test_vllm.py
View file @
f9d57094
...
@@ -35,7 +35,6 @@ pytestmark = [
...
@@ -35,7 +35,6 @@ pytestmark = [
pytest
.
mark
.
gpu_1
,
pytest
.
mark
.
gpu_1
,
pytest
.
mark
.
e2e
,
pytest
.
mark
.
e2e
,
pytest
.
mark
.
model
(
FAULT_TOLERANCE_MODEL_NAME
),
pytest
.
mark
.
model
(
FAULT_TOLERANCE_MODEL_NAME
),
pytest
.
mark
.
post_merge
,
# post_merge to pinpoint failure commit
pytest
.
mark
.
parametrize
(
"request_plane"
,
[
"nats"
,
"tcp"
],
indirect
=
True
),
pytest
.
mark
.
parametrize
(
"request_plane"
,
[
"nats"
,
"tcp"
],
indirect
=
True
),
]
]
...
@@ -179,6 +178,7 @@ class DynamoWorkerProcess(ManagedProcess):
...
@@ -179,6 +178,7 @@ class DynamoWorkerProcess(ManagedProcess):
@
pytest
.
mark
.
timeout
(
110
)
# 3x average
@
pytest
.
mark
.
timeout
(
110
)
# 3x average
@
pytest
.
mark
.
post_merge
def
test_request_cancellation_vllm_aggregated
(
def
test_request_cancellation_vllm_aggregated
(
request
,
runtime_services_dynamic_ports
,
predownload_models
request
,
runtime_services_dynamic_ports
,
predownload_models
):
):
...
@@ -260,6 +260,7 @@ def test_request_cancellation_vllm_aggregated(
...
@@ -260,6 +260,7 @@ def test_request_cancellation_vllm_aggregated(
@
pytest
.
mark
.
timeout
(
150
)
# 3x average
@
pytest
.
mark
.
timeout
(
150
)
# 3x average
@
pytest
.
mark
.
nightly
def
test_request_cancellation_vllm_decode_cancel
(
def
test_request_cancellation_vllm_decode_cancel
(
request
,
runtime_services_dynamic_ports
,
set_ucx_tls_no_mm
,
predownload_models
request
,
runtime_services_dynamic_ports
,
set_ucx_tls_no_mm
,
predownload_models
):
):
...
@@ -341,6 +342,7 @@ def test_request_cancellation_vllm_decode_cancel(
...
@@ -341,6 +342,7 @@ def test_request_cancellation_vllm_decode_cancel(
@
pytest
.
mark
.
timeout
(
150
)
# 3x average
@
pytest
.
mark
.
timeout
(
150
)
# 3x average
@
pytest
.
mark
.
nightly
def
test_request_cancellation_vllm_prefill_cancel
(
def
test_request_cancellation_vllm_prefill_cancel
(
request
,
runtime_services_dynamic_ports
,
set_ucx_tls_no_mm
,
predownload_models
request
,
runtime_services_dynamic_ports
,
set_ucx_tls_no_mm
,
predownload_models
):
):
...
...
tests/fault_tolerance/migration/test_sglang.py
View file @
f9d57094
...
@@ -31,7 +31,6 @@ pytestmark = [
...
@@ -31,7 +31,6 @@ pytestmark = [
pytest
.
mark
.
gpu_1
,
pytest
.
mark
.
gpu_1
,
pytest
.
mark
.
e2e
,
pytest
.
mark
.
e2e
,
pytest
.
mark
.
model
(
FAULT_TOLERANCE_MODEL_NAME
),
pytest
.
mark
.
model
(
FAULT_TOLERANCE_MODEL_NAME
),
pytest
.
mark
.
post_merge
,
# post_merge to pinpoint failure commit
pytest
.
mark
.
parametrize
(
pytest
.
mark
.
parametrize
(
"migration_limit"
,
[
3
,
0
],
ids
=
[
"migration_enabled"
,
"migration_disabled"
]
"migration_limit"
,
[
3
,
0
],
ids
=
[
"migration_enabled"
,
"migration_disabled"
]
),
),
...
@@ -211,6 +210,7 @@ class DynamoWorkerProcess(ManagedProcess):
...
@@ -211,6 +210,7 @@ class DynamoWorkerProcess(ManagedProcess):
@
pytest
.
mark
.
timeout
(
230
)
# 3x average
@
pytest
.
mark
.
timeout
(
230
)
# 3x average
@
pytest
.
mark
.
post_merge
def
test_request_migration_sglang_aggregated
(
def
test_request_migration_sglang_aggregated
(
request
,
request
,
runtime_services_dynamic_ports
,
runtime_services_dynamic_ports
,
...
@@ -262,6 +262,7 @@ def test_request_migration_sglang_aggregated(
...
@@ -262,6 +262,7 @@ def test_request_migration_sglang_aggregated(
@
pytest
.
mark
.
skip
(
reason
=
"Cannot reliably migrate at Prefill that finish < 1 ms"
)
@
pytest
.
mark
.
skip
(
reason
=
"Cannot reliably migrate at Prefill that finish < 1 ms"
)
@
pytest
.
mark
.
xfail
(
strict
=
False
,
reason
=
"Prefill migration not yet supported"
)
@
pytest
.
mark
.
xfail
(
strict
=
False
,
reason
=
"Prefill migration not yet supported"
)
@
pytest
.
mark
.
timeout
(
230
)
# 3x average
@
pytest
.
mark
.
timeout
(
230
)
# 3x average
@
pytest
.
mark
.
nightly
def
test_request_migration_sglang_prefill
(
def
test_request_migration_sglang_prefill
(
request
,
request
,
runtime_services_dynamic_ports
,
runtime_services_dynamic_ports
,
...
@@ -330,6 +331,7 @@ def test_request_migration_sglang_prefill(
...
@@ -330,6 +331,7 @@ def test_request_migration_sglang_prefill(
@
pytest
.
mark
.
skip
(
reason
=
"KV cache transfer may fail"
)
@
pytest
.
mark
.
skip
(
reason
=
"KV cache transfer may fail"
)
@
pytest
.
mark
.
timeout
(
230
)
# 3x average
@
pytest
.
mark
.
timeout
(
230
)
# 3x average
@
pytest
.
mark
.
nightly
def
test_request_migration_sglang_kv_transfer
(
def
test_request_migration_sglang_kv_transfer
(
request
,
request
,
runtime_services_dynamic_ports
,
runtime_services_dynamic_ports
,
...
@@ -397,6 +399,7 @@ def test_request_migration_sglang_kv_transfer(
...
@@ -397,6 +399,7 @@ def test_request_migration_sglang_kv_transfer(
@
pytest
.
mark
.
timeout
(
230
)
# 3x average
@
pytest
.
mark
.
timeout
(
230
)
# 3x average
@
pytest
.
mark
.
nightly
def
test_request_migration_sglang_decode
(
def
test_request_migration_sglang_decode
(
request
,
request
,
runtime_services_dynamic_ports
,
runtime_services_dynamic_ports
,
...
...
tests/fault_tolerance/migration/test_trtllm.py
View file @
f9d57094
...
@@ -31,7 +31,6 @@ pytestmark = [
...
@@ -31,7 +31,6 @@ pytestmark = [
pytest
.
mark
.
gpu_1
,
pytest
.
mark
.
gpu_1
,
pytest
.
mark
.
e2e
,
pytest
.
mark
.
e2e
,
pytest
.
mark
.
model
(
FAULT_TOLERANCE_MODEL_NAME
),
pytest
.
mark
.
model
(
FAULT_TOLERANCE_MODEL_NAME
),
pytest
.
mark
.
post_merge
,
# post_merge to pinpoint failure commit
pytest
.
mark
.
parametrize
(
pytest
.
mark
.
parametrize
(
"migration_limit"
,
[
3
,
0
],
ids
=
[
"migration_enabled"
,
"migration_disabled"
]
"migration_limit"
,
[
3
,
0
],
ids
=
[
"migration_enabled"
,
"migration_disabled"
]
),
),
...
@@ -198,7 +197,8 @@ class DynamoWorkerProcess(ManagedProcess):
...
@@ -198,7 +197,8 @@ class DynamoWorkerProcess(ManagedProcess):
return
False
return
False
@
pytest
.
mark
.
timeout
(
290
)
# 3x average
@
pytest
.
mark
.
timeout
(
290
)
@
pytest
.
mark
.
post_merge
# 3x average
def
test_request_migration_trtllm_aggregated
(
def
test_request_migration_trtllm_aggregated
(
request
,
request
,
runtime_services_dynamic_ports
,
runtime_services_dynamic_ports
,
...
@@ -249,6 +249,7 @@ def test_request_migration_trtllm_aggregated(
...
@@ -249,6 +249,7 @@ def test_request_migration_trtllm_aggregated(
@
pytest
.
mark
.
xfail
(
strict
=
False
,
reason
=
"Prefill migration not yet supported"
)
@
pytest
.
mark
.
xfail
(
strict
=
False
,
reason
=
"Prefill migration not yet supported"
)
@
pytest
.
mark
.
timeout
(
350
)
# 3x average
@
pytest
.
mark
.
timeout
(
350
)
# 3x average
@
pytest
.
mark
.
nightly
def
test_request_migration_trtllm_prefill
(
def
test_request_migration_trtllm_prefill
(
request
,
request
,
runtime_services_dynamic_ports
,
runtime_services_dynamic_ports
,
...
@@ -317,6 +318,7 @@ def test_request_migration_trtllm_prefill(
...
@@ -317,6 +318,7 @@ def test_request_migration_trtllm_prefill(
@
pytest
.
mark
.
skip
(
reason
=
"Decode worker can get stuck downloading kv cache"
)
@
pytest
.
mark
.
skip
(
reason
=
"Decode worker can get stuck downloading kv cache"
)
@
pytest
.
mark
.
timeout
(
350
)
# 3x average
@
pytest
.
mark
.
timeout
(
350
)
# 3x average
@
pytest
.
mark
.
nightly
def
test_request_migration_trtllm_kv_transfer
(
def
test_request_migration_trtllm_kv_transfer
(
request
,
request
,
runtime_services_dynamic_ports
,
runtime_services_dynamic_ports
,
...
@@ -384,6 +386,7 @@ def test_request_migration_trtllm_kv_transfer(
...
@@ -384,6 +386,7 @@ def test_request_migration_trtllm_kv_transfer(
@
pytest
.
mark
.
timeout
(
350
)
# 3x average
@
pytest
.
mark
.
timeout
(
350
)
# 3x average
@
pytest
.
mark
.
post_merge
def
test_request_migration_trtllm_decode
(
def
test_request_migration_trtllm_decode
(
request
,
request
,
runtime_services_dynamic_ports
,
runtime_services_dynamic_ports
,
...
...
tests/fault_tolerance/migration/test_vllm.py
View file @
f9d57094
...
@@ -32,7 +32,6 @@ pytestmark = [
...
@@ -32,7 +32,6 @@ pytestmark = [
pytest
.
mark
.
gpu_1
,
pytest
.
mark
.
gpu_1
,
pytest
.
mark
.
e2e
,
pytest
.
mark
.
e2e
,
pytest
.
mark
.
model
(
FAULT_TOLERANCE_MODEL_NAME
),
pytest
.
mark
.
model
(
FAULT_TOLERANCE_MODEL_NAME
),
pytest
.
mark
.
post_merge
,
# post_merge to pinpoint failure commit
pytest
.
mark
.
parametrize
(
pytest
.
mark
.
parametrize
(
"migration_limit"
,
[
3
,
0
],
ids
=
[
"migration_enabled"
,
"migration_disabled"
]
"migration_limit"
,
[
3
,
0
],
ids
=
[
"migration_enabled"
,
"migration_disabled"
]
),
),
...
@@ -208,6 +207,7 @@ class DynamoWorkerProcess(ManagedProcess):
...
@@ -208,6 +207,7 @@ class DynamoWorkerProcess(ManagedProcess):
@
pytest
.
mark
.
timeout
(
290
)
# 3x average
@
pytest
.
mark
.
timeout
(
290
)
# 3x average
@
pytest
.
mark
.
post_merge
def
test_request_migration_vllm_aggregated
(
def
test_request_migration_vllm_aggregated
(
request
,
request
,
runtime_services_dynamic_ports
,
runtime_services_dynamic_ports
,
...
@@ -258,6 +258,7 @@ def test_request_migration_vllm_aggregated(
...
@@ -258,6 +258,7 @@ def test_request_migration_vllm_aggregated(
@
pytest
.
mark
.
xfail
(
strict
=
False
,
reason
=
"Prefill migration not yet supported"
)
@
pytest
.
mark
.
xfail
(
strict
=
False
,
reason
=
"Prefill migration not yet supported"
)
@
pytest
.
mark
.
timeout
(
350
)
# 3x average
@
pytest
.
mark
.
timeout
(
350
)
# 3x average
@
pytest
.
mark
.
nightly
def
test_request_migration_vllm_prefill
(
def
test_request_migration_vllm_prefill
(
request
,
request
,
runtime_services_dynamic_ports
,
runtime_services_dynamic_ports
,
...
@@ -335,6 +336,7 @@ def test_request_migration_vllm_prefill(
...
@@ -335,6 +336,7 @@ def test_request_migration_vllm_prefill(
),
),
)
)
@
pytest
.
mark
.
timeout
(
350
)
# 3x average
@
pytest
.
mark
.
timeout
(
350
)
# 3x average
@
pytest
.
mark
.
nightly
def
test_request_migration_vllm_kv_transfer
(
def
test_request_migration_vllm_kv_transfer
(
request
,
request
,
runtime_services_dynamic_ports
,
runtime_services_dynamic_ports
,
...
@@ -412,6 +414,7 @@ def test_request_migration_vllm_kv_transfer(
...
@@ -412,6 +414,7 @@ def test_request_migration_vllm_kv_transfer(
),
),
)
)
@
pytest
.
mark
.
timeout
(
350
)
# 3x average
@
pytest
.
mark
.
timeout
(
350
)
# 3x average
@
pytest
.
mark
.
nightly
def
test_request_migration_vllm_decode
(
def
test_request_migration_vllm_decode
(
request
,
request
,
runtime_services_dynamic_ports
,
runtime_services_dynamic_ports
,
...
...
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