Skip to content

Commit

Permalink
[TEST] Fix wrong image model in image gen samplers test
Browse files Browse the repository at this point in the history
  • Loading branch information
Aedial committed May 25, 2023
1 parent 44db083 commit 39aeab9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/api/test_imagegen_samplers.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
sampler_xfail = pytest.mark.xfail(True, raises=NovelAIError, reason="The sampler doesn't currently work")

models = list(ImageModel)
models.remove(ImageModel.Anime_Inpainting)
models.remove(ImageModel.Inpainting_Anime_Full)
models.remove(ImageModel.Inainting_Anime_Curated)
models.remove(ImageModel.Inpainting_Furry)

samplers = list(ImageSampler)
model_samplers = list(itertools.product(models, samplers))
Expand Down

0 comments on commit 39aeab9

Please sign in to comment.