Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move ControlNetXS into Community Folder #6316

Merged
merged 13 commits into from
Dec 27, 2023
Merged
2 changes: 2 additions & 0 deletions tests/pipelines/controlnetxs/test_controlnetxs.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ def _test_stable_diffusion_compile(in_queue, out_queue, timeout):
out_queue.join()


@unittest.skip("Move to Community Pipelines")
class ControlNetXSPipelineFastTests(
PipelineLatentTesterMixin, PipelineKarrasSchedulerTesterMixin, PipelineTesterMixin, unittest.TestCase
):
Expand Down Expand Up @@ -243,6 +244,7 @@ def test_controlnet_lcm(self):
assert np.abs(image_slice.flatten() - expected_slice).max() < 1e-2


@unittest.skip("Move to Community Pipelines")
@slow
@require_torch_gpu
class ControlNetXSPipelineSlowTests(unittest.TestCase):
Expand Down
2 changes: 2 additions & 0 deletions tests/pipelines/controlnetxs/test_controlnetxs_sdxl.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
enable_full_determinism()


@unittest.skip("Move to Community Pipelines")
class StableDiffusionXLControlNetXSPipelineFastTests(
PipelineLatentTesterMixin,
PipelineKarrasSchedulerTesterMixin,
Expand Down Expand Up @@ -307,6 +308,7 @@ def test_stable_diffusion_xl_prompt_embeds(self):
assert np.abs(image_slice_1.flatten() - image_slice_2.flatten()).max() < 1.1e-4


@unittest.skip("Move to Community Pipelines")
@slow
@require_torch_gpu
class ControlNetSDXLPipelineXSSlowTests(unittest.TestCase):
Expand Down
Loading