[Misc] Move tensor schema tests (#22612)

Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk>
This commit is contained in:
Cyrus Leung 2025-08-11 15:15:27 +08:00 committed by GitHub
parent bc1d02ac85
commit ebf7605b0d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 12 additions and 6 deletions

View File

@ -57,9 +57,10 @@ steps:
- vllm/ - vllm/
- tests/mq_llm_engine - tests/mq_llm_engine
- tests/async_engine - tests/async_engine
- tests/test_inputs - tests/test_inputs.py
- tests/test_outputs.py
- tests/multimodal - tests/multimodal
- tests/test_utils - tests/utils_
- tests/worker - tests/worker
- tests/standalone_tests/lazy_imports.py - tests/standalone_tests/lazy_imports.py
commands: commands:
@ -70,7 +71,7 @@ steps:
- pytest -v -s test_inputs.py - pytest -v -s test_inputs.py
- pytest -v -s test_outputs.py - pytest -v -s test_outputs.py
- pytest -v -s multimodal - pytest -v -s multimodal
- pytest -v -s test_utils.py # Utils - pytest -v -s utils_ # Utils
- pytest -v -s worker # Worker - pytest -v -s worker # Worker
- label: Python-only Installation Test - label: Python-only Installation Test

6
tests/utils_/__init__.py Normal file
View File

@ -0,0 +1,6 @@
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
"""
This module is named `utils_` instead of `utils` to avoid obscuring
`tests/utils.py`.
"""

View File

@ -5,7 +5,6 @@
import asyncio import asyncio
import hashlib import hashlib
import json import json
import logging
import pickle import pickle
import socket import socket
from collections.abc import AsyncIterator from collections.abc import AsyncIterator
@ -29,7 +28,7 @@ from vllm.utils import (CacheInfo, FlexibleArgumentParser, LRUCache,
merge_async_iterators, sha256, split_host_port, merge_async_iterators, sha256, split_host_port,
split_zmq_path, supports_kw, swap_dict_values) split_zmq_path, supports_kw, swap_dict_values)
from .utils import create_new_process_for_each_test, error_on_warning from ..utils import create_new_process_for_each_test, error_on_warning
@pytest.mark.asyncio @pytest.mark.asyncio

View File

@ -32,7 +32,7 @@ ALLOWED_FILES = set([
'vllm/multimodal/hasher.py', 'vllm/multimodal/hasher.py',
'vllm/transformers_utils/config.py', 'vllm/transformers_utils/config.py',
'vllm/model_executor/models/registry.py', 'vllm/model_executor/models/registry.py',
'tests/test_utils.py', 'tests/utils_/test_utils.py',
'tests/tokenization/test_cached_tokenizer.py', 'tests/tokenization/test_cached_tokenizer.py',
'vllm/distributed/utils.py', 'vllm/distributed/utils.py',
'vllm/distributed/parallel_state.py', 'vllm/distributed/parallel_state.py',