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
44a40a0b
Unverified
Commit
44a40a0b
authored
Sep 29, 2025
by
Jacky
Committed by
GitHub
Sep 30, 2025
Browse files
test: Allow prefill cancellation tests to fail (#3300)
Signed-off-by:
Jacky
<
18255193+kthui@users.noreply.github.com
>
parent
3aa30778
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
tests/fault_tolerance/cancellation/test_trtllm.py
tests/fault_tolerance/cancellation/test_trtllm.py
+10
-0
tests/fault_tolerance/cancellation/test_vllm.py
tests/fault_tolerance/cancellation/test_vllm.py
+5
-0
No files found.
tests/fault_tolerance/cancellation/test_trtllm.py
View file @
44a40a0b
...
...
@@ -344,6 +344,11 @@ def test_request_cancellation_trtllm_decode_first_decode_cancel(
@
pytest
.
mark
.
gpu_1
@
pytest
.
mark
.
e2e
@
pytest
.
mark
.
model
(
FAULT_TOLERANCE_MODEL_NAME
)
@
pytest
.
mark
.
xfail
(
reason
=
"Time-sensitive test: Relies on request timeout (0.1s) to cancel during remote prefill phase. "
"May fail if prefill completes too quickly or timeout triggers at a different phase."
,
strict
=
False
,
)
def
test_request_cancellation_trtllm_decode_first_remote_prefill_cancel
(
request
,
runtime_services
,
predownload_models
):
...
...
@@ -403,6 +408,11 @@ def test_request_cancellation_trtllm_decode_first_remote_prefill_cancel(
@
pytest
.
mark
.
gpu_1
@
pytest
.
mark
.
e2e
@
pytest
.
mark
.
model
(
FAULT_TOLERANCE_MODEL_NAME
)
@
pytest
.
mark
.
xfail
(
reason
=
"Time-sensitive test: Relies on request timeout (0.1s) to cancel during prefill phase. "
"May fail if prefill completes too quickly or timeout triggers at a different phase."
,
strict
=
False
,
)
def
test_request_cancellation_trtllm_prefill_first_prefill_cancel
(
request
,
runtime_services
,
predownload_models
):
...
...
tests/fault_tolerance/cancellation/test_vllm.py
View file @
44a40a0b
...
...
@@ -316,6 +316,11 @@ def test_request_cancellation_vllm_decode(
@
pytest
.
mark
.
gpu_1
@
pytest
.
mark
.
e2e
@
pytest
.
mark
.
model
(
FAULT_TOLERANCE_MODEL_NAME
)
@
pytest
.
mark
.
xfail
(
reason
=
"Time-sensitive test: Relies on request timeout (0.1s) to cancel during prefill phase. "
"May fail if prefill completes too quickly or timeout triggers at a different phase."
,
strict
=
False
,
)
def
test_request_cancellation_vllm_prefill
(
request
,
runtime_services
,
predownload_models
):
...
...
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