From 17bf65e1868ef2821cae8769b1da7258e7f01f4c Mon Sep 17 00:00:00 2001 From: patil-suraj Date: Mon, 27 Jun 2022 11:39:19 +0200 Subject: [PATCH] skip test_ldm_text2img for now --- tests/test_modeling_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_modeling_utils.py b/tests/test_modeling_utils.py index 4556753006..191d28ee6d 100755 --- a/tests/test_modeling_utils.py +++ b/tests/test_modeling_utils.py @@ -679,6 +679,7 @@ class PipelineTesterMixin(unittest.TestCase): assert (image_slice.flatten() - expected_slice).abs().max() < 1e-2 @slow + @unittest.skip("Skipping for now as it takes too long") def test_ldm_text2img(self): model_id = "fusing/latent-diffusion-text2im-large" ldm = LatentDiffusionPipeline.from_pretrained(model_id)