From 5c7821fd79318edd8997105c91d5c55059883e4e Mon Sep 17 00:00:00 2001 From: Jesse Yurkovich Date: Thu, 27 Jun 2024 22:34:36 +0200 Subject: [PATCH] imbuf: Add regression test for PSD Make use of recently added PSD test files to ensure loading works correctly when we update our library dependencies. Pull Request: https://projects.blender.org/blender/blender/pulls/123861 --- tests/python/bl_imbuf_load.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/python/bl_imbuf_load.py b/tests/python/bl_imbuf_load.py index 37700cfaca4..423809fbd20 100644 --- a/tests/python/bl_imbuf_load.py +++ b/tests/python/bl_imbuf_load.py @@ -156,6 +156,9 @@ class ImBufLoadTest(ImBufTest): self.check("*.webp") + def test_load_psd(self): + self.check("*.psd") + class ImBufBrokenTest(AbstractImBufTest): @classmethod