Skip to content

Commit ce237f3

Browse files
committed
updates
1 parent b40272e commit ce237f3

File tree

7 files changed

+48
-0
lines changed

7 files changed

+48
-0
lines changed

tests/pipelines/controlnet/test_controlnet.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,10 @@ def test_controlnet_lcm_custom_timesteps(self):
282282

283283
assert np.abs(image_slice.flatten() - expected_slice).max() < 1e-2
284284

285+
@unittest.skip("Test not supported.")
286+
def test_save_load_dduf(self):
287+
pass
288+
285289

286290
class StableDiffusionMultiControlNetPipelineFastTests(
287291
IPAdapterTesterMixin, PipelineTesterMixin, PipelineKarrasSchedulerTesterMixin, unittest.TestCase
@@ -514,6 +518,10 @@ def test_inference_multiple_prompt_input(self):
514518

515519
assert image.shape == (4, 64, 64, 3)
516520

521+
@unittest.skip("Test not supported.")
522+
def test_save_load_dduf(self):
523+
pass
524+
517525

518526
class StableDiffusionMultiControlNetOneModelPipelineFastTests(
519527
IPAdapterTesterMixin, PipelineTesterMixin, PipelineKarrasSchedulerTesterMixin, unittest.TestCase
@@ -697,6 +705,10 @@ def test_save_pretrained_raise_not_implemented_exception(self):
697705
except NotImplementedError:
698706
pass
699707

708+
@unittest.skip("Test not supported.")
709+
def test_save_load_dduf(self):
710+
pass
711+
700712

701713
@slow
702714
@require_torch_gpu

tests/pipelines/controlnet/test_controlnet_blip_diffusion.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,3 +220,7 @@ def test_blipdiffusion_controlnet(self):
220220
assert (
221221
np.abs(image_slice.flatten() - expected_slice).max() < 1e-2
222222
), f" expected_slice {expected_slice}, but got {image_slice.flatten()}"
223+
224+
@unittest.skip("Test not supported.")
225+
def test_save_load_dduf(self):
226+
pass

tests/pipelines/controlnet/test_controlnet_img2img.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,10 @@ def test_xformers_attention_forwardGenerator_pass(self):
189189
def test_inference_batch_single_identical(self):
190190
self._test_inference_batch_single_identical(expected_max_diff=2e-3)
191191

192+
@unittest.skip("Test not supported.")
193+
def test_save_load_dduf(self):
194+
pass
195+
192196

193197
class StableDiffusionMultiControlNetPipelineFastTests(
194198
IPAdapterTesterMixin, PipelineTesterMixin, PipelineKarrasSchedulerTesterMixin, unittest.TestCase
@@ -389,6 +393,10 @@ def test_save_pretrained_raise_not_implemented_exception(self):
389393
except NotImplementedError:
390394
pass
391395

396+
@unittest.skip("Test not supported.")
397+
def test_save_load_dduf(self):
398+
pass
399+
392400

393401
@slow
394402
@require_torch_gpu

tests/pipelines/controlnet/test_controlnet_inpaint.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,10 @@ def test_save_pretrained_raise_not_implemented_exception(self):
441441
except NotImplementedError:
442442
pass
443443

444+
@unittest.skip("Test not supported.")
445+
def test_save_load_dduf(self):
446+
pass
447+
444448

445449
@slow
446450
@require_torch_gpu

tests/pipelines/controlnet/test_controlnet_inpaint_sdxl.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,3 +352,7 @@ def test_save_load_optional_components(self):
352352

353353
def test_float16_inference(self):
354354
super().test_float16_inference(expected_max_diff=5e-1)
355+
356+
@unittest.skip("Test not supported.")
357+
def test_save_load_dduf(self):
358+
pass

tests/pipelines/controlnet/test_controlnet_sdxl.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -478,6 +478,10 @@ def new_step(self, *args, **kwargs):
478478
]:
479479
assert_run_mixture(steps, split, scheduler_cls_timesteps[0], scheduler_cls_timesteps[1])
480480

481+
@unittest.skip("Test not supported.")
482+
def test_save_load_dduf(self):
483+
pass
484+
481485

482486
class StableDiffusionXLMultiControlNetPipelineFastTests(
483487
PipelineTesterMixin, PipelineKarrasSchedulerTesterMixin, SDXLOptionalComponentsTesterMixin, unittest.TestCase
@@ -683,6 +687,10 @@ def test_inference_batch_single_identical(self):
683687
def test_save_load_optional_components(self):
684688
return self._test_save_load_optional_components()
685689

690+
@unittest.skip("Test not supported.")
691+
def test_save_load_dduf(self):
692+
pass
693+
686694

687695
class StableDiffusionXLMultiControlNetOneModelPipelineFastTests(
688696
PipelineKarrasSchedulerTesterMixin, PipelineTesterMixin, SDXLOptionalComponentsTesterMixin, unittest.TestCase
@@ -887,6 +895,10 @@ def test_negative_conditions(self):
887895

888896
self.assertTrue(np.abs(image_slice_without_neg_cond - image_slice_with_neg_cond).max() > 1e-2)
889897

898+
@unittest.skip("Test not supported.")
899+
def test_save_load_dduf(self):
900+
pass
901+
890902

891903
@slow
892904
@require_torch_gpu

tests/pipelines/controlnet/test_controlnet_sdxl_img2img.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,3 +361,7 @@ def test_stable_diffusion_xl_prompt_embeds(self):
361361

362362
# make sure that it's equal
363363
assert np.abs(image_slice_1.flatten() - image_slice_2.flatten()).max() < 1e-4
364+
365+
@unittest.skip("Test not supported.")
366+
def test_save_load_dduf(self):
367+
pass

0 commit comments

Comments
 (0)