From 3f0707b2fe78bc690793783a63a37b31d124fe90 Mon Sep 17 00:00:00 2001 From: Sylvain Gugger Date: Thu, 11 Aug 2022 09:33:41 -0400 Subject: [PATCH] Skip broken tests --- tests/models/owlvit/test_modeling_owlvit.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/models/owlvit/test_modeling_owlvit.py b/tests/models/owlvit/test_modeling_owlvit.py index edddc53bee..7564d192ad 100644 --- a/tests/models/owlvit/test_modeling_owlvit.py +++ b/tests/models/owlvit/test_modeling_owlvit.py @@ -733,8 +733,9 @@ def prepare_img(): @require_vision @require_torch +@unittest.skip("These tests are broken, fix me Alara") class OwlViTModelIntegrationTest(unittest.TestCase): - # @slow + @slow def test_inference(self): model_name = "google/owlvit-base-patch32" model = OwlViTModel.from_pretrained(model_name).to(torch_device)