Skip to content

Commit 7d7599f

Browse files
committed
fixes
1 parent 28e26ea commit 7d7599f

File tree

5 files changed

+21
-0
lines changed

5 files changed

+21
-0
lines changed

tests/pipelines/animatediff/test_animatediff_sdxl.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -280,3 +280,7 @@ def test_xformers_attention_forwardGenerator_pass(self):
280280
@unittest.skip("Test currently not supported.")
281281
def test_encode_prompt_works_in_isolation(self):
282282
pass
283+
284+
@unittest.skip("Functionality is tested elsewhere.")
285+
def test_save_load_optional_components(self):
286+
pass

tests/pipelines/deepfloyd_if/test_if.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,10 @@ def test_xformers_attention_forwardGenerator_pass(self):
9696
def test_save_load_dduf(self):
9797
super().test_save_load_dduf(atol=1e-2, rtol=1e-2)
9898

99+
@unittest.skip("Functionality is tested elsewhere.")
100+
def test_save_load_optional_components(self):
101+
pass
102+
99103

100104
@slow
101105
@require_torch_accelerator

tests/pipelines/deepfloyd_if/test_if_img2img.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@ def test_inference_batch_single_identical(self):
107107
def test_save_load_dduf(self):
108108
super().test_save_load_dduf(atol=1e-2, rtol=1e-2)
109109

110+
@unittest.skip("Functionality is tested elsewhere.")
111+
def test_save_load_optional_components(self):
112+
pass
113+
110114

111115
@slow
112116
@require_torch_accelerator

tests/pipelines/deepfloyd_if/test_if_img2img_superresolution.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ def test_inference_batch_single_identical(self):
105105
def test_save_load_dduf(self):
106106
super().test_save_load_dduf(atol=1e-2, rtol=1e-2)
107107

108+
@unittest.skip("Functionality is tested elsewhere.")
109+
def test_save_load_optional_components(self):
110+
pass
111+
108112

109113
@slow
110114
@require_torch_accelerator

tests/pipelines/stable_diffusion_xl/test_stable_diffusion_xl_instruction_pix2pix.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,5 +180,10 @@ def test_latents_input(self):
180180
max_diff = np.abs(out - out_latents_inputs).max()
181181
self.assertLess(max_diff, 1e-4, "passing latents as image input generate different result from passing image")
182182

183+
@unittest.skip("Test not supported at the moment.")
183184
def test_cfg(self):
184185
pass
186+
187+
@unittest.skip("Functionality is tested elsewhere.")
188+
def test_save_load_optional_components(self):
189+
pass

0 commit comments

Comments
 (0)