Now added delete for real
Test / pytest (push) Failing after 14s

This commit is contained in:
Frank Schwenk
2026-07-27 22:48:16 +02:00
parent a138e33c04
commit 2da66dcb78
8 changed files with 693 additions and 22 deletions
+2 -2
View File
@@ -6,7 +6,7 @@ from pathlib import Path
from imagepipeline import Pipeline
INPUT = Path(
"/home/frank/pics/20260712_Aichelberg Indians - Heidelberg Hedgehogs/darktable_exported/edits"
"/home/frank/pics/20260726_Hellraisers Schlossplatz die Zweite/darktable_exported/gimp"
)
OUTPUT_BASE = Path.home() / "pipeline_output"
@@ -21,7 +21,7 @@ def main() -> None:
output_base=OUTPUT_BASE,
) as p:
resized = p.step("imagemagick_resize", inputs="input", max_edge=MAX_EDGE)
p.step("darktable_style", inputs=resized, style=STYLE)
p.step("darktable_style", inputs=resized, style=STYLE, out_ext="jpg")
output_root = p.run()
print(f"Pipeline finished. Output: {output_root}")