mirror of https://github.com/vllm-project/vllm.git
12 lines
340 B
Python
12 lines
340 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
|
|
import vllm
|
|
|
|
|
|
def test_embedded_commit_defined():
|
|
assert hasattr(vllm, "__version__")
|
|
assert hasattr(vllm, "__version_tuple__")
|
|
assert vllm.__version__ != "dev"
|
|
assert vllm.__version_tuple__ != (0, 0, "dev")
|