mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-10 07:15:01 +08:00
[CI] Skip "Multi-Modal Models Test (Extended) 3" test that's broken in current Transformers (#28559)
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
This commit is contained in:
parent
64d57c3be7
commit
a39dd7bb06
@ -9,11 +9,13 @@ from collections import defaultdict
|
|||||||
from pathlib import PosixPath
|
from pathlib import PosixPath
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
from packaging.version import Version
|
||||||
from transformers import (
|
from transformers import (
|
||||||
AutoModel,
|
AutoModel,
|
||||||
AutoModelForImageTextToText,
|
AutoModelForImageTextToText,
|
||||||
AutoModelForTextToWaveform,
|
AutoModelForTextToWaveform,
|
||||||
)
|
)
|
||||||
|
from transformers import __version__ as TRANSFORMERS_VERSION
|
||||||
|
|
||||||
from vllm.platforms import current_platform
|
from vllm.platforms import current_platform
|
||||||
from vllm.utils.func_utils import identity
|
from vllm.utils.func_utils import identity
|
||||||
@ -851,6 +853,12 @@ VLM_TEST_SETTINGS = {
|
|||||||
limit_mm_per_prompt={"image": 4},
|
limit_mm_per_prompt={"image": 4},
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
|
marks=[
|
||||||
|
pytest.mark.skipif(
|
||||||
|
Version(TRANSFORMERS_VERSION) == Version("4.57.1"),
|
||||||
|
reason="This model is broken in Transformers v4.57.1",
|
||||||
|
)
|
||||||
|
],
|
||||||
),
|
),
|
||||||
# regression test for https://github.com/vllm-project/vllm/issues/15122
|
# regression test for https://github.com/vllm-project/vllm/issues/15122
|
||||||
"qwen2_5_vl-windows-attention": VLMTestInfo(
|
"qwen2_5_vl-windows-attention": VLMTestInfo(
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user