Skip to content

Commit 4e86dc3

Browse files
committed
fix
Signed-off-by: zjy0516 <[email protected]>
1 parent a5be333 commit 4e86dc3

File tree

1 file changed

+21
-8
lines changed

1 file changed

+21
-8
lines changed

tests/utils_/test_utils.py

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,16 @@
2323
from vllm.config import ParallelConfig, VllmConfig, set_current_vllm_config
2424
from vllm.transformers_utils.detokenizer_utils import (
2525
convert_ids_list_to_tokens)
26-
from vllm.utils import (CacheInfo, FlexibleArgumentParser, LRUCache,
27-
MemorySnapshot, PlaceholderModule, StoreBoolean,
28-
bind_kv_cache, common_broadcastable_dtype,
29-
current_stream, deprecate_kwargs, get_open_port,
30-
get_tcp_uri, is_lossless_cast, join_host_port,
31-
make_zmq_path, make_zmq_socket, memory_profiling,
32-
merge_async_iterators, sha256, split_host_port,
33-
split_zmq_path, supports_kw, swap_dict_values)
3426

27+
# isort: off
28+
from vllm.utils import (
29+
CacheInfo, FlexibleArgumentParser, LRUCache, MemorySnapshot,
30+
PlaceholderModule, bind_kv_cache, common_broadcastable_dtype,
31+
current_stream, deprecate_kwargs, get_open_port, get_tcp_uri,
32+
is_lossless_cast, join_host_port, make_zmq_path, make_zmq_socket,
33+
memory_profiling, merge_async_iterators, sha256, split_host_port,
34+
split_zmq_path, supports_kw, swap_dict_values, unique_filepath)
35+
# isort: on
3536
from ..utils import create_new_process_for_each_test, error_on_warning
3637

3738

@@ -1032,3 +1033,15 @@ def test_load_config_file(tmp_path):
10321033
# Assert that the processed arguments match the expected output
10331034
assert processed_args == expected_args
10341035
os.remove(str(config_file_path))
1036+
1037+
1038+
def test_unique_filepath():
1039+
temp_dir = tempfile.mkdtemp()
1040+
path_fn = lambda i: Path(temp_dir) / f"file_{i}.txt"
1041+
paths = set()
1042+
for i in range(10):
1043+
path = unique_filepath(path_fn)
1044+
path.write_text("test")
1045+
paths.add(path)
1046+
assert len(paths) == 10
1047+
assert len(list(Path(temp_dir).glob("*.txt"))) == 10

0 commit comments

Comments
 (0)