Execution#

You can execute a verification pipeline via a Python interface, or via the Command-Line. When running from Python, an OutputDataset object is returned.

from veriflow import run_pipeline
from pathlib import Path

path_to_config = ("./config.yaml")
output_dataset = run_pipeline((path_to_config, "yaml"))
veriflow run --config ./config.yaml