mirror of
https://github.com/wassname/vllm.git
synced 2026-07-01 06:18:02 +08:00
1f26efbb3a
Co-authored-by: Roger Wang <136131678+ywang96@users.noreply.github.com>
10 lines
273 B
Python
10 lines
273 B
Python
import pytest
|
|
|
|
from vllm.model_executor.models import _MODELS, ModelRegistry
|
|
|
|
|
|
@pytest.mark.parametrize("model_cls", _MODELS)
|
|
def test_registry_imports(model_cls):
|
|
# Ensure all model classes can be imported successfully
|
|
ModelRegistry.resolve_model_cls([model_cls])
|