[XPU] upgrade requirements/test/xpu.txt - #52672
Merged
Merged
Conversation
Signed-off-by: mayuyuace <qiming1.zhang@intel.com>
Signed-off-by: mayuyuace <qiming1.zhang@intel.com>
jikunshang
approved these changes
Aug 18, 2026
Member
|
/ci run |
|
✅ Triggered Buildkite CI #84331 for commit |
Signed-off-by: Qiming Zhang <qiming1.zhang@intel.com>
Contributor
Author
|
/ci run |
|
✅ Triggered Buildkite CI #84513 for commit |
wenhuach21
pushed a commit
to wenhuach21/vllm
that referenced
this pull request
Aug 19, 2026
Signed-off-by: mayuyuace <qiming1.zhang@intel.com> Signed-off-by: Qiming Zhang <qiming1.zhang@intel.com> Signed-off-by: Wenhua Cheng <wenhua.cheng@intel.com>
zufangzhu
pushed a commit
to zufangzhu/vllm
that referenced
this pull request
Aug 24, 2026
Signed-off-by: mayuyuace <qiming1.zhang@intel.com> Signed-off-by: Qiming Zhang <qiming1.zhang@intel.com> Signed-off-by: Zhu, Zufang <zufang.zhu@intel.com>
am-cohere
pushed a commit
to am-cohere/vllm
that referenced
this pull request
Sep 1, 2026
Signed-off-by: mayuyuace <qiming1.zhang@intel.com> Signed-off-by: Qiming Zhang <qiming1.zhang@intel.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
BUG:
https://buildkite.com/vllm/intel-ci/builds/9136/canvas?sid=01a01157-7bc4-4dd2-9cbd-d6f16677b983&tab=output
tests/engine/test_arg_utils.py::test_prefix_cache_retention_interval_from_deprecated_env FAILED on XPU CI, PASSED on CUDA CI.
Root cause:
The pytest version specified in
requirements/test/xpu.txtfor XPU is 9.0.2, whereas the version inrequirements/test/cuda.txtfor CUDA is 9.1.0.The test uses the
caplogfixture to capture vLLM's WARNING logs; however, the vLLM logger is configured withpropagate=False(invllm/logger.py:67), meaning logs do not propagate to the root logger. In pytest 9.0.2,caplogrelies on propagation to the root logger, so it fails to capture the logs; consequently,caplog.textis empty, and the assertion fails. pytest 9.1.0 addresses this behavior, allowing it to directly capture logs from loggers wherepropagate=False.Fix:
Re-compile requirements/test/xpu.txt to update all packages.