mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-10 13:44:58 +08:00
9 lines
293 B
Python
9 lines
293 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
from vllm.v1.metrics.stats import IterationStats
|
|
|
|
|
|
def test_iteration_stats_repr():
|
|
iteration_stats = IterationStats()
|
|
assert repr(iteration_stats).startswith("IterationStats(")
|