Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip failing QwenVL test for now #35933

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions tests/models/qwen2_vl/test_modeling_qwen2_vl.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import unittest

import requests
from parameterized import parameterized

from transformers import (
AutoProcessor,
Expand Down Expand Up @@ -336,6 +337,11 @@ def test_generate_from_inputs_embeds_with_static_cache(self):
def test_generate_compile_model_forward(self):
pass

@parameterized.expand([("greedy", 1), ("beam search", 2)])
@unittest.skip(reason="Breaks the CIs right now! To check!")
def test_generate_from_inputs_embeds(self, _, num_beams):
pass


@require_torch
class Qwen2VLIntegrationTest(unittest.TestCase):
Expand Down