mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-10 07:24:56 +08:00
8 lines
206 B
Python
8 lines
206 B
Python
import vllm
|
|
|
|
|
|
def test_embedded_commit_defined():
|
|
assert vllm.__commit__ != "COMMIT_HASH_PLACEHOLDER"
|
|
# 7 characters is the length of a short commit hash
|
|
assert len(vllm.__commit__) >= 7
|