stop relying on SDXL 0.9 weights in test

This commit is contained in:
Pierre Chapuis 2023-09-06 19:32:44 +02:00
parent d54a38ae07
commit d9a461e9b5

View file

@ -11,7 +11,7 @@ from refiners.fluxion.model_converter import ConversionStage, ModelConverter
@pytest.fixture(scope="module")
def stabilityai_sdxl_base_path(test_weights_path: Path) -> Path:
r = test_weights_path / "stabilityai" / "stable-diffusion-xl-base-0.9"
r = test_weights_path / "stabilityai" / "stable-diffusion-xl-base-1.0"
if not r.is_dir():
warn(f"could not find Stability SDXL base weights at {r}, skipping")
pytest.skip(allow_module_level=True)