[AMD] Fix CI RuntimeError: opentelemetry package is not installed (#23940)

Co-authored-by: Bingxu Chen <bingxche@amd.com>
This commit is contained in:
jacky.cheng
2026-04-29 18:02:44 +08:00
committed by GitHub
co-authored by Bingxu Chen
parent d9270b8c6a
commit 180bb2624f
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -167,7 +167,7 @@ test = [
"tabulate", "tabulate",
] ]
all_hip = ["sglang[srt_hip]", "sglang[diffusion_hip]"] all_hip = ["sglang[srt_hip]", "sglang[diffusion_hip]", "sglang[tracing]"]
all_hpu = ["sglang[srt_hpu]"] all_hpu = ["sglang[srt_hpu]"]
all_musa = ["sglang[srt_musa]", "sglang[diffusion_musa]"] all_musa = ["sglang[srt_musa]", "sglang[diffusion_musa]"]
all_mps = ["sglang[srt_mps]", "sglang[diffusion_mps]"] all_mps = ["sglang[srt_mps]", "sglang[diffusion_mps]"]
+2 -2
View File
@@ -26,9 +26,9 @@ done
OPTIONAL_DEPS="${1:-}" OPTIONAL_DEPS="${1:-}"
# Build python extras # Build python extras
EXTRAS="dev_hip" EXTRAS="dev_hip,tracing"
if [ -n "$OPTIONAL_DEPS" ]; then if [ -n "$OPTIONAL_DEPS" ]; then
EXTRAS="dev_hip,${OPTIONAL_DEPS}" EXTRAS="dev_hip,tracing,${OPTIONAL_DEPS}"
fi fi
echo "Installing python extras: [${EXTRAS}]" echo "Installing python extras: [${EXTRAS}]"