@@ -478,10 +478,6 @@ 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- 
485481
486482class  StableDiffusionXLMultiControlNetPipelineFastTests (
487483    PipelineTesterMixin , PipelineKarrasSchedulerTesterMixin , SDXLOptionalComponentsTesterMixin , unittest .TestCase 
@@ -491,6 +487,8 @@ class StableDiffusionXLMultiControlNetPipelineFastTests(
491487    batch_params  =  TEXT_TO_IMAGE_BATCH_PARAMS 
492488    image_params  =  frozenset ([])  # TO_DO: add image_params once refactored VaeImageProcessor.preprocess 
493489
490+     supports_dduf  =  False 
491+ 
494492    def  get_dummy_components (self ):
495493        torch .manual_seed (0 )
496494        unet  =  UNet2DConditionModel (
@@ -687,10 +685,6 @@ def test_inference_batch_single_identical(self):
687685    def  test_save_load_optional_components (self ):
688686        return  self ._test_save_load_optional_components ()
689687
690-     @unittest .skip ("Test not supported." ) 
691-     def  test_save_load_dduf (self ):
692-         pass 
693- 
694688
695689class  StableDiffusionXLMultiControlNetOneModelPipelineFastTests (
696690    PipelineKarrasSchedulerTesterMixin , PipelineTesterMixin , SDXLOptionalComponentsTesterMixin , unittest .TestCase 
@@ -700,6 +694,8 @@ class StableDiffusionXLMultiControlNetOneModelPipelineFastTests(
700694    batch_params  =  TEXT_TO_IMAGE_BATCH_PARAMS 
701695    image_params  =  frozenset ([])  # TO_DO: add image_params once refactored VaeImageProcessor.preprocess 
702696
697+     supports_dduf  =  False 
698+ 
703699    def  get_dummy_components (self ):
704700        torch .manual_seed (0 )
705701        unet  =  UNet2DConditionModel (
@@ -895,10 +891,6 @@ def test_negative_conditions(self):
895891
896892        self .assertTrue (np .abs (image_slice_without_neg_cond  -  image_slice_with_neg_cond ).max () >  1e-2 )
897893
898-     @unittest .skip ("Test not supported." ) 
899-     def  test_save_load_dduf (self ):
900-         pass 
901- 
902894
903895@slow  
904896@require_torch_gpu  
0 commit comments