"git@developer.sourcefind.cn:chenpangpang/transformers.git" did not exist on "d97fd871e5ba57b23b1775ef2939ffea128dd08d"
Unverified Commit 5e5fa0d8 authored by amyeroberts's avatar amyeroberts Committed by GitHub
Browse files

Mark flaky tests (#25463)

Make CI less brittle
parent 11757e2b
...@@ -306,7 +306,7 @@ class TFWav2Vec2ModelTester: ...@@ -306,7 +306,7 @@ class TFWav2Vec2ModelTester:
model = TFWav2Vec2ForCTC(config) model = TFWav2Vec2ForCTC(config)
input_lengths = tf.constant([input_values.shape[-1] // i for i in [4, 2, 1]]) input_lengths = tf.constant([input_values.shape[-1] // i for i in [4, 2, 1]])
max_length_labels = model.wav2vec2._get_feat_extract_output_lengths(input_lengths) max_length_labels = model.wav2vec2._get_feat_extract_output_lengths(input_lengths)
labels = ids_tensor((input_values.shape[0], min(max_length_labels) - 1), model.config.vocab_size + 100) labels = ids_tensor((input_values.shape[0], min(max_length_labels) - 1), model.config.vocab_size + 500)
with pytest.raises(ValueError): with pytest.raises(ValueError):
model(input_values, labels=labels) model(input_values, labels=labels)
......
...@@ -23,7 +23,7 @@ from requests import ReadTimeout ...@@ -23,7 +23,7 @@ from requests import ReadTimeout
from tests.pipelines.test_pipelines_document_question_answering import INVOICE_URL from tests.pipelines.test_pipelines_document_question_answering import INVOICE_URL
from transformers import is_torch_available, is_vision_available from transformers import is_torch_available, is_vision_available
from transformers.image_utils import ChannelDimension, get_channel_dimension_axis, make_list_of_images from transformers.image_utils import ChannelDimension, get_channel_dimension_axis, make_list_of_images
from transformers.testing_utils import require_torch, require_vision from transformers.testing_utils import is_flaky, require_torch, require_vision
if is_torch_available(): if is_torch_available():
...@@ -486,6 +486,7 @@ class LoadImageTester(unittest.TestCase): ...@@ -486,6 +486,7 @@ class LoadImageTester(unittest.TestCase):
self.assertEqual(img_arr.shape, (1061, 750, 3)) self.assertEqual(img_arr.shape, (1061, 750, 3))
@is_flaky()
def test_load_img_url_timeout(self): def test_load_img_url_timeout(self):
with self.assertRaises(ReadTimeout): with self.assertRaises(ReadTimeout):
load_image(INVOICE_URL, timeout=0.001) load_image(INVOICE_URL, timeout=0.001)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment