From b27d4edbe191e682e18b3a9efc38bb1371368d2d Mon Sep 17 00:00:00 2001 From: Dhruv Nair Date: Fri, 21 Feb 2025 16:24:20 +0530 Subject: [PATCH] [CI] Update always test Pipelines list in Pipeline fetcher (#10856) * update * update --------- Co-authored-by: Sayak Paul --- utils/fetch_torch_cuda_pipeline_test_matrix.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/utils/fetch_torch_cuda_pipeline_test_matrix.py b/utils/fetch_torch_cuda_pipeline_test_matrix.py index 227a60bc59..196f35628a 100644 --- a/utils/fetch_torch_cuda_pipeline_test_matrix.py +++ b/utils/fetch_torch_cuda_pipeline_test_matrix.py @@ -12,12 +12,14 @@ import diffusers PATH_TO_REPO = Path(__file__).parent.parent.resolve() ALWAYS_TEST_PIPELINE_MODULES = [ "controlnet", + "controlnet_flux", + "controlnet_sd3", "stable_diffusion", "stable_diffusion_2", + "stable_diffusion_3", "stable_diffusion_xl", - "stable_diffusion_adapter", "ip_adapters", - "kandinsky2_2", + "flux", ] PIPELINE_USAGE_CUTOFF = int(os.getenv("PIPELINE_USAGE_CUTOFF", 50000))