Skip to content

Commit 366aa2f

Browse files
committed
updates
1 parent 454b9b9 commit 366aa2f

23 files changed

+89
-1
lines changed

tests/pipelines/audioldm2/test_audioldm2.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,10 @@ def test_to_dtype(self):
509509
def test_sequential_cpu_offload_forward_pass(self):
510510
pass
511511

512+
@unittest.skip("Test not supported.")
513+
def test_save_load_dduf(self):
514+
pass
515+
512516

513517
@nightly
514518
class AudioLDM2PipelineSlowTests(unittest.TestCase):

tests/pipelines/blipdiffusion/test_blipdiffusion.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,3 +196,7 @@ def test_blipdiffusion(self):
196196
assert (
197197
np.abs(image_slice.flatten() - expected_slice).max() < 1e-2
198198
), f" expected_slice {image_slice.flatten()}, but got {image_slice.flatten()}"
199+
200+
@unittest.skip("Test not supported.")
201+
def test_save_load_dduf(self):
202+
pass

tests/pipelines/i2vgen_xl/test_i2vgenxl.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,10 @@ def test_num_videos_per_prompt(self):
224224

225225
assert np.abs(image_slice.flatten() - expected_slice).max() < 1e-2
226226

227+
@unittest.skip("Test not supported.")
228+
def test_save_load_dduf(self):
229+
pass
230+
227231

228232
@slow
229233
@require_torch_gpu

tests/pipelines/kandinsky/test_kandinsky.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,10 @@ def test_offloads(self):
271271
assert np.abs(image_slices[0] - image_slices[1]).max() < 1e-3
272272
assert np.abs(image_slices[0] - image_slices[2]).max() < 1e-3
273273

274+
@unittest.skip("Test not supported.")
275+
def test_save_load_dduf(self):
276+
pass
277+
274278

275279
@slow
276280
@require_torch_gpu

tests/pipelines/kandinsky/test_kandinsky_img2img.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,10 @@ def test_offloads(self):
295295
def test_dict_tuple_outputs_equivalent(self):
296296
super().test_dict_tuple_outputs_equivalent(expected_max_difference=5e-4)
297297

298+
@unittest.skip("Test not supported.")
299+
def test_save_load_dduf(self):
300+
pass
301+
298302

299303
@slow
300304
@require_torch_gpu

tests/pipelines/kandinsky/test_kandinsky_inpaint.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,10 @@ def test_offloads(self):
293293
def test_float16_inference(self):
294294
super().test_float16_inference(expected_max_diff=5e-1)
295295

296+
@unittest.skip("Test not supported.")
297+
def test_save_load_dduf(self):
298+
pass
299+
296300

297301
@nightly
298302
@require_torch_gpu

tests/pipelines/kandinsky/test_kandinsky_prior.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,3 +236,7 @@ def test_attention_slicing_forward_pass(self):
236236
test_max_difference=test_max_difference,
237237
test_mean_pixel_difference=test_mean_pixel_difference,
238238
)
239+
240+
@unittest.skip("Test not supported.")
241+
def test_save_load_dduf(self):
242+
pass

tests/pipelines/kandinsky2_2/test_kandinsky_prior.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,3 +277,7 @@ def callback_inputs_test(pipe, i, t, callback_kwargs):
277277

278278
output = pipe(**inputs)[0]
279279
assert output.abs().sum() == 0
280+
281+
@unittest.skip("Test not supported.")
282+
def test_save_load_dduf(self):
283+
pass

tests/pipelines/kandinsky2_2/test_kandinsky_prior_emb2emb.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,3 +240,7 @@ def test_attention_slicing_forward_pass(self):
240240
test_max_difference=test_max_difference,
241241
test_mean_pixel_difference=test_mean_pixel_difference,
242242
)
243+
244+
@unittest.skip("Test not supported.")
245+
def test_save_load_dduf(self):
246+
pass

tests/pipelines/lumina/test_lumina_nextdit.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,10 @@ def test_lumina_prompt_embeds(self):
123123
def test_xformers_attention_forwardGenerator_pass(self):
124124
pass
125125

126+
@unittest.skip("Test not supported.")
127+
def test_save_load_dduf(self):
128+
pass
129+
126130

127131
@slow
128132
@require_torch_gpu

0 commit comments

Comments
 (0)