From 8f400775fc5bc1011a2674dcfd5408d30d69f678 Mon Sep 17 00:00:00 2001 From: Sylvain Gugger Date: Wed, 29 Jun 2022 09:11:29 -0400 Subject: [PATCH] Skip failing test until they are fixed. --- tests/pipelines/test_pipelines_image_segmentation.py | 1 + tests/pipelines/test_pipelines_object_detection.py | 1 + 2 files changed, 2 insertions(+) diff --git a/tests/pipelines/test_pipelines_image_segmentation.py b/tests/pipelines/test_pipelines_image_segmentation.py index fe3ff1ee88f694..b3ec6cd9b2c790 100644 --- a/tests/pipelines/test_pipelines_image_segmentation.py +++ b/tests/pipelines/test_pipelines_image_segmentation.py @@ -146,6 +146,7 @@ def run_pipeline_test(self, image_segmenter, examples): def test_small_model_tf(self): pass + @unittest.skip("Model has moved, skip until it's fixed.") @require_torch def test_small_model_pt(self): model_id = "mishig/tiny-detr-mobilenetsv3-panoptic" diff --git a/tests/pipelines/test_pipelines_object_detection.py b/tests/pipelines/test_pipelines_object_detection.py index d0694d9bdffd15..3346ca0df9d597 100644 --- a/tests/pipelines/test_pipelines_object_detection.py +++ b/tests/pipelines/test_pipelines_object_detection.py @@ -104,6 +104,7 @@ def run_pipeline_test(self, object_detector, examples): def test_small_model_tf(self): pass + @unittest.skip("Model has moved, skip until it's fixed.") @require_torch def test_small_model_pt(self): model_id = "mishig/tiny-detr-mobilenetsv3"