Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions tests/integration/defs/examples/serve/test_serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import time

import requests
from defs.conftest import llm_models_root, skip_pre_hopper
from defs.conftest import llm_models_root, skip_no_hopper
from defs.trt_test_alternative import popen, print_error, print_info
from openai import OpenAI
from requests.exceptions import RequestException
Expand Down Expand Up @@ -92,9 +92,11 @@ def check_openai_chat_completion(http_port="8000",
raise


@skip_pre_hopper
@skip_no_hopper
def test_extra_llm_api_options(serve_test_root):
test_configs_root = f"{serve_test_root}/test_configs"

# moe backend = CUTLASS which only supports fp8 blockscale on Hopper
config_file = f"{test_configs_root}/Qwen3-30B-A3B-FP8.yml"
model_path = f"{llm_models_root()}/Qwen3/Qwen3-30B-A3B-FP8"

Expand Down
Loading