pypiper
pypiper copied to clipboard
Setting the pipeline folder to a path that's not absolute causes problem for checkpointing
When using a Pipeline and configuring the outfolder with a value that's not an absolute path causes the checkpoint call to fail due to trying to write to a file in a subfolder of the same name, e.g. "pypiper_output" --> Path.cwd() / "pypiper_output" / "pypiper_output" / "my_stage.checkpoint" instead of Path.cwd() / "pypiper_output" / "my_stage.checkpoint"
Marking as low-priority since this can be readily worked around by passing an absolute path