Skip to content

Commit

Permalink
[CI][Bugfix] Skip chameleon for transformers 4.46.1 (vllm-project#9808)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgoin authored and hissu-hyvarinen committed Nov 6, 2024
1 parent cb2736c commit adfb35a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def test_models(hf_runner, vllm_runner, image_assets,
elif model.startswith("llava-hf/llava-v1.6"):
from .test_llava_next import models, run_test # type: ignore[no-redef]
elif model.startswith("facebook/chameleon"):
if transformers.__version__.startswith("4.46.0"):
if transformers.__version__.startswith("4.46"):
pytest.skip("Model broken in HF, "
"see huggingface/transformers#34379")
from .test_chameleon import models, run_test # type: ignore[no-redef]
Expand Down

0 comments on commit adfb35a

Please sign in to comment.