2025-10-04 22:00:21 -07:00
|
|
|
# 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()
|
2025-11-10 08:34:36 +00:00
|
|
|
assert repr(iteration_stats).startswith("IterationStats(")
|