Cleanup/quality pass #1

Merged
froxxxy merged 14 commits from cleanup/quality-pass into main 2026-07-18 17:53:57 +02:00
Showing only changes of commit a138e33c04 - Show all commits
+4 -2
View File
@@ -340,8 +340,10 @@ class TestCompositeColor:
output = output_dir / "fg.png"
assert output.is_file()
result = run_command([magick, "identify", "-format", "%[type]", str(output)])
assert result.stdout.strip() != "Grayscale"
from PIL import Image
with Image.open(output) as img:
assert img.mode != "L"
has_workflow_tools = check_workflow_tools()